You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2016/02/24 23:07:36 UTC

[17/20] incubator-geode git commit: GEODE-906: Clean up source header / modification text

GEODE-906: Clean up source header / modification text

* HashIndexSet to use the standard Apache source header with a separate modification statement
* IdentityArrayList to use the original license header with a separate modificaiton statement
* Added fastutil copyright to the NOTICE

this closes #101


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/8f31850d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/8f31850d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/8f31850d

Branch: refs/heads/feature/GEODE-953
Commit: 8f31850d719a2ebcff89bf900b96cdc80752542d
Parents: 18ad0ad
Author: Sai Boorlagadda <sb...@pivotal.io>
Authored: Mon Feb 22 12:16:37 2016 -0800
Committer: Sai Boorlagadda <sb...@pivotal.io>
Committed: Tue Feb 23 16:08:01 2016 -0800

----------------------------------------------------------------------
 NOTICE                                                 |  3 +++
 .../cache/query/internal/index/HashIndexSet.java       | 13 -------------
 .../gemfire/internal/cache/IdentityArrayList.java      | 10 +++++-----
 3 files changed, 8 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8f31850d/NOTICE
----------------------------------------------------------------------
diff --git a/NOTICE b/NOTICE
index dfc5390..f247b7a 100644
--- a/NOTICE
+++ b/NOTICE
@@ -19,3 +19,6 @@ This product also includes code adapted from:
 
 Apache Solr (http://lucene.apache.org/solr/)
 Copyright 2014 The Apache Software Foundation
+
+fastutil
+Copyright (C) 2002-2014 Sebastiano Vigna 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8f31850d/geode-core/src/main/java/com/gemstone/gemfire/cache/query/internal/index/HashIndexSet.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/query/internal/index/HashIndexSet.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/query/internal/index/HashIndexSet.java
index 2fa72d1..5ed724b 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/query/internal/index/HashIndexSet.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/query/internal/index/HashIndexSet.java
@@ -19,19 +19,6 @@
  * insertionIndex(), index(), trimToSize() are based on code provided by fastutil
  * They are based from add(), contains() and other methods from ObjectOpenHashSet
  * We have used the traversing mechanism and the HashCommon.mix()
- * Copyright (C) 2002-2014 Sebastiano Vigna 
- *
- * Licensed 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 com.gemstone.gemfire.cache.query.internal.index;
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8f31850d/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/IdentityArrayList.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/IdentityArrayList.java b/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/IdentityArrayList.java
index 3b54687..736f6bf 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/IdentityArrayList.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/IdentityArrayList.java
@@ -1,9 +1,4 @@
 /*
- * This is a modified version of the fastutil ObjectArrayList.  It is modified
- * to use identity checks rather than equality checks for higher performance.
- * 
- * The original file had this Apache 2.0 copyright:
- * 
  * Copyright (C) 2002-2014 Sebastiano Vigna 
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -18,6 +13,11 @@
  * See the License for the specific language governing permissions and
  * limitations under the License. 
  */
+
+/*
+ * This is a modified version of the fastutil ObjectArrayList.  It is modified
+ * to use identity checks rather than equality checks for higher performance.
+ */
 package com.gemstone.gemfire.internal.cache;
 import java.util.Arrays;
 import java.util.Collection;