From c5b48a39e879c966b8f2889df92a1d53a6f86a5c Mon Sep 17 00:00:00 2001 From: Vibhatha Abeykoon Date: Wed, 19 Jun 2024 12:27:32 +0530 Subject: [PATCH] fix: addressing reviews 1 --- java/README.md | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/java/README.md b/java/README.md index f690347d180c4..144d32326ab5e 100644 --- a/java/README.md +++ b/java/README.md @@ -72,35 +72,6 @@ find java/format/src -type f | while read file; do done ``` -# add module-info.java to the generated code - -Make sure to add the `java/format/src/main/java/module-format.java` as follows. - -```java -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -module org.apache.arrow.format { - exports org.apache.arrow.flatbuf; - requires transitive flatbuffers.java; -} - -``` - ## Performance Tuning There are several system/environmental variables that users can configure. These trade off safety (they turn off checking) for speed. Typically they are only used in production settings after the code has been thoroughly tested without using them.