You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@giraph.apache.org by hy...@apache.org on 2011/09/14 13:16:32 UTC

svn commit: r1170531 - in /incubator/giraph/trunk: CHANGELOG src/main/java/org/apache/giraph/graph/GraphState.java

Author: hyunsik
Date: Wed Sep 14 11:16:31 2011
New Revision: 1170531

URL: http://svn.apache.org/viewvc?rev=1170531&view=rev
Log:
GIRAPH-33: Missing license header of GraphState.java

Modified:
    incubator/giraph/trunk/CHANGELOG
    incubator/giraph/trunk/src/main/java/org/apache/giraph/graph/GraphState.java

Modified: incubator/giraph/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/incubator/giraph/trunk/CHANGELOG?rev=1170531&r1=1170530&r2=1170531&view=diff
==============================================================================
--- incubator/giraph/trunk/CHANGELOG (original)
+++ incubator/giraph/trunk/CHANGELOG Wed Sep 14 11:16:31 2011
@@ -2,6 +2,8 @@ Giraph Change Log
 
 Release 0.70.0 - unreleased
 
+  GIRAPH-33: Missing license header of GraphState.java (Claudio Martella via hyunsik)
+
   GIRAPH-31: Hide the SortedMap<I, Edge<I,E>> in Vertex from client
   visibility (impl. detail), replace with appropriate accessor
   methods. jake.mannix via aching.

Modified: incubator/giraph/trunk/src/main/java/org/apache/giraph/graph/GraphState.java
URL: http://svn.apache.org/viewvc/incubator/giraph/trunk/src/main/java/org/apache/giraph/graph/GraphState.java?rev=1170531&r1=1170530&r2=1170531&view=diff
==============================================================================
--- incubator/giraph/trunk/src/main/java/org/apache/giraph/graph/GraphState.java (original)
+++ incubator/giraph/trunk/src/main/java/org/apache/giraph/graph/GraphState.java Wed Sep 14 11:16:31 2011
@@ -1,3 +1,21 @@
+/*
+ * 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.giraph.graph;
 
 import org.apache.hadoop.io.Writable;