From 7b24dec25d6df81ef3f3a33f12968c5476692acd Mon Sep 17 00:00:00 2001 From: akankshamahajan Date: Tue, 19 Dec 2023 13:43:17 -0800 Subject: [PATCH] Fix header files to meet Open source requirements (#12164) Summary: Same as title Pull Request resolved: https://github.com/facebook/rocksdb/pull/12164 Reviewed By: hx235 Differential Revision: D52302234 Pulled By: akankshamahajan15 fbshipit-source-id: d4724fc944c773242788f5a47d1c7eadbbc5a522 --- java/rocksjni/table_properties_collector_factory.cc | 6 ++++-- java/rocksjni/table_properties_collector_factory.h | 6 ++++-- .../java/org/rocksdb/TablePropertiesCollectorFactory.java | 6 ++++++ 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/java/rocksjni/table_properties_collector_factory.cc b/java/rocksjni/table_properties_collector_factory.cc index 432d2c8dd96..60e1df6e8b1 100644 --- a/java/rocksjni/table_properties_collector_factory.cc +++ b/java/rocksjni/table_properties_collector_factory.cc @@ -1,6 +1,8 @@ +// Copyright (c) Meta Platforms, Inc. and affiliates. // -// Created by rhubner on 23-Oct-23. -// +// This source code is licensed under both the GPLv2 (found in the +// COPYING file in the root directory) and Apache 2.0 License +// (found in the LICENSE.Apache file in the root directory). #include "java/rocksjni/table_properties_collector_factory.h" diff --git a/java/rocksjni/table_properties_collector_factory.h b/java/rocksjni/table_properties_collector_factory.h index 6121e0fd2ba..411c218c30c 100644 --- a/java/rocksjni/table_properties_collector_factory.h +++ b/java/rocksjni/table_properties_collector_factory.h @@ -1,7 +1,9 @@ +// Copyright (c) Meta Platforms, Inc. and affiliates. // -// Created by rhubner on 24-Oct-23. +// This source code is licensed under both the GPLv2 (found in the +// COPYING file in the root directory) and Apache 2.0 License +// (found in the LICENSE.Apache file in the root directory). // - #include "rocksdb/table_properties.h" #include "rocksdb/utilities/table_properties_collectors.h" diff --git a/java/src/main/java/org/rocksdb/TablePropertiesCollectorFactory.java b/java/src/main/java/org/rocksdb/TablePropertiesCollectorFactory.java index ea5435d5200..ae2789ef826 100644 --- a/java/src/main/java/org/rocksdb/TablePropertiesCollectorFactory.java +++ b/java/src/main/java/org/rocksdb/TablePropertiesCollectorFactory.java @@ -1,3 +1,9 @@ +// Copyright (c) Meta Platforms, Inc. and affiliates. +// +// This source code is licensed under both the GPLv2 (found in the +// COPYING file in the root directory) and Apache 2.0 License +// (found in the LICENSE.Apache file in the root directory). + package org.rocksdb; public abstract class TablePropertiesCollectorFactory extends RocksObject {