Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix header files to meet Open source requirements #12164

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions java/rocksjni/table_properties_collector_factory.cc
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
6 changes: 4 additions & 2 deletions java/rocksjni/table_properties_collector_factory.h
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
Loading