This is an automated email from the ASF dual-hosted git repository.

qiaojialin pushed a commit to branch update_license
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/update_license by this push:
     new 3e91de1  remove unnecessary headers
     new 1d5f454  Merge branch 'update_license' of 
github.com:apache/incubator-iotdb into update_license
3e91de1 is described below

commit 3e91de1100b0073d0d594eafdcd683bb4cda4ce1
Author: qiaojialin <[email protected]>
AuthorDate: Tue Mar 12 19:29:45 2019 +0800

    remove unnecessary headers
---
 .../org/apache/iotdb/db/sql/parse/AstErrorNode.java | 21 ---------------------
 .../java/org/apache/iotdb/db/sql/parse/AstNode.java | 21 ---------------------
 .../apache/iotdb/db/sql/parse/AstNodeOrigin.java    | 21 ---------------------
 .../java/org/apache/iotdb/db/sql/parse/Node.java    | 21 ---------------------
 .../org/apache/iotdb/db/sql/parse/ParseDriver.java  | 21 ---------------------
 .../org/apache/iotdb/db/sql/parse/ParseError.java   | 21 ---------------------
 .../apache/iotdb/db/sql/parse/ParseException.java   | 21 ---------------------
 .../org/apache/iotdb/db/sql/parse/ParseUtils.java   | 21 ---------------------
 8 files changed, 168 deletions(-)

diff --git 
a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstErrorNode.java 
b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstErrorNode.java
index 2227273..a54123d 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstErrorNode.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstErrorNode.java
@@ -16,27 +16,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/**
- * Based on ASTErrorNode.java from Apache Hive
- *
- * 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.
- */
-
 package org.apache.iotdb.db.sql.parse;
 
 import org.antlr.runtime.RecognitionException;
diff --git a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstNode.java 
b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstNode.java
index b36dae1..6911e89 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstNode.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstNode.java
@@ -16,27 +16,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/**
- * Based on ASTNode.java from Apache Hive
- *
- * 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.
- */
-
 package org.apache.iotdb.db.sql.parse;
 
 import java.io.Serializable;
diff --git 
a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstNodeOrigin.java 
b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstNodeOrigin.java
index f021847..4f4bacc 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstNodeOrigin.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/AstNodeOrigin.java
@@ -31,27 +31,6 @@ package org.apache.iotdb.db.sql.parse;
  * So, when expanding the definition of v while analyzing the top-level query, 
we tag each AstNode
  * with a reference to an AstNodeOrign describing v and its usage within the 
query.
  */
-
-/**
- * Based on ASTNodeOrigin.java from Apache Hive
- *
- * 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.
- */
-
 public class AstNodeOrigin {
 
   private final String objectType;
diff --git a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/Node.java 
b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/Node.java
index e3ce3e7..c8a39ac 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/Node.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/Node.java
@@ -16,27 +16,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/**
- * Based on Node.java from Apache Hive
- *
- * 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.
- */
-
 package org.apache.iotdb.db.sql.parse;
 
 import java.util.List;
diff --git a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseDriver.java 
b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseDriver.java
index 6e1d6c2..72fb845 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseDriver.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseDriver.java
@@ -16,27 +16,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/**
- * Based on ParseDriver.java from Apache Hive
- *
- * 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.
- */
-
 package org.apache.iotdb.db.sql.parse;
 
 import java.util.ArrayList;
diff --git a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseError.java 
b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseError.java
index 6662f2e..5859468 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseError.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseError.java
@@ -16,27 +16,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/**
- * Based on ParseError.java from Apache Hive
- *
- * 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.
- */
-
 package org.apache.iotdb.db.sql.parse;
 
 import org.antlr.runtime.BaseRecognizer;
diff --git 
a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseException.java 
b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseException.java
index f6fe8fe..517d7ae 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseException.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseException.java
@@ -16,27 +16,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/**
- * Based on ParseException.java from Apache Hive
- *
- * 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.
- */
-
 package org.apache.iotdb.db.sql.parse;
 
 import java.util.List;
diff --git a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseUtils.java 
b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseUtils.java
index e473996..9a1c50a 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseUtils.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/sql/parse/ParseUtils.java
@@ -16,27 +16,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/**
- * Based on ParseUtils.java from Apache Hive
- *
- * 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.
- */
-
 package org.apache.iotdb.db.sql.parse;
 
 /**

Reply via email to