Author: marcosperanza
Date: Thu Jul 12 08:01:49 2012
New Revision: 1360569
URL: http://svn.apache.org/viewvc?rev=1360569&view=rev
Log:
fixed checkstyle errors in header
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/utils/Assertions.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/utils/Objects.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/weight/Monoid.java
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/utils/Assertions.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/utils/Assertions.java?rev=1360569&r1=1360568&r2=1360569&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/utils/Assertions.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/utils/Assertions.java
Thu Jul 12 08:01:49 2012
@@ -1,20 +1,22 @@
package org.apache.commons.graph.utils;
/*
- * 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
+ * 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
+ * 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.
+ * 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.
*/
import static java.lang.String.format;
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/utils/Objects.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/utils/Objects.java?rev=1360569&r1=1360568&r2=1360569&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/utils/Objects.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/utils/Objects.java
Thu Jul 12 08:01:49 2012
@@ -1,23 +1,23 @@
package org.apache.commons.graph.utils;
-
/*
- * 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
+ * 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
+ * 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.
+ * 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.
*/
-
/**
* Object simple utility methods.
*/
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/weight/Monoid.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/weight/Monoid.java?rev=1360569&r1=1360568&r2=1360569&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/weight/Monoid.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/weight/Monoid.java
Thu Jul 12 08:01:49 2012
@@ -1,7 +1,5 @@
package org.apache.commons.graph.weight;
-import java.io.Serializable;
-
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
@@ -21,6 +19,8 @@ import java.io.Serializable;
* under the License.
*/
+import java.io.Serializable;
+
/**
* A {@link Monoid} is a {@link Semigroup} with an identity value.
*