X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fgeneral%2FPair.java;h=dd78180f6b6fbd8446fe58d59ca2b24e810ac51c;hb=4a575582a5c2999bd816b197d9cf274b4b3ddcd7;hp=bf5e589c3d382deb523f0f4f4b583b85efb6be03;hpb=0d8d8f24656e585ee75558cfd6a4c661f8f14985;p=utils diff --git a/support/general/src/main/java/org/wamblee/general/Pair.java b/support/general/src/main/java/org/wamblee/general/Pair.java index bf5e589c..dd78180f 100644 --- a/support/general/src/main/java/org/wamblee/general/Pair.java +++ b/support/general/src/main/java/org/wamblee/general/Pair.java @@ -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. @@ -26,13 +23,11 @@ package org.wamblee.general; * Type of the first object. * @param * Type of the second object. - * + * * @author Erik Brakkee */ public class Pair { - private T t; - private U u; /** @@ -76,5 +71,4 @@ public class Pair { public U getSecond() { return u; } - }