copyright messages updated in all java filees.
[utils] / support / general / src / main / java / org / wamblee / general / Pair.java
index bf5e589c3d382deb523f0f4f4b583b85efb6be03..4ea880791ecd56abb12239720684e5d33b465483 100644 (file)
@@ -1,8 +1,5 @@
-
-
-
 /*
- * Copyright 2005 the original author or authors.
+ * Copyright 2005-2010 the original author or authors.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -15,7 +12,7 @@
  * 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.wamblee.general;
 
 /**
@@ -26,13 +23,11 @@ package org.wamblee.general;
  *            Type of the first object.
  * @param <U>
  *            Type of the second object.
- *
+ * 
  * @author Erik Brakkee
  */
 public class Pair<T, U> {
-
     private T t;
-
     private U u;
 
     /**
@@ -76,5 +71,4 @@ public class Pair<T, U> {
     public U getSecond() {
         return u;
     }
-
 }