Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / main / java / org / wamblee / general / Pair.java
index 2d90387fb3bc8e642522e3f91e2daaea7c324c7a..7af828c1201feec30b11cea05b87ebb70159af77 100644 (file)
@@ -1,15 +1,12 @@
-
-
-
 /*
  * Copyright 2005 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.
  * 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.
@@ -26,14 +23,12 @@ 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;
+    private T t;
+    private U u;
 
     /**
      * Constructs the pair.
@@ -44,8 +39,8 @@ public class Pair<T, U> {
      *            Second object.
      */
     public Pair(T aT, U aU) {
-        _t = aT;
-        _u = aU;
+        t = aT;
+        u = aU;
     }
 
     /**
@@ -55,8 +50,8 @@ public class Pair<T, U> {
      *            Pair to copy.
      */
     public Pair(Pair<T, U> aPair) {
-        _t = aPair._t;
-        _u = aPair._u;
+        t = aPair.t;
+        u = aPair.u;
     }
 
     /**
@@ -65,7 +60,7 @@ public class Pair<T, U> {
      * @return First object.
      */
     public T getFirst() {
-        return _t;
+        return t;
     }
 
     /**
@@ -74,7 +69,6 @@ public class Pair<T, U> {
      * @return Second object.
      */
     public U getSecond() {
-        return _u;
+        return u;
     }
-
 }