Also via Charlie, noticed by Eclipse: naming consistency with other methods.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@2754 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
ray.j.greenwell
2010-03-04 21:39:06 +00:00
parent 51c6b89c8e
commit c5203171f4
+2 -2
View File
@@ -26,9 +26,9 @@ import java.util.HashMap;
*/
public class Mapping
{
public static <K, V> HashMap<K, V> of (K k1, V val1)
public static <K, V> HashMap<K, V> of (K k1, V v1)
{
return of(new Object[] { k1, val1 });
return of(new Object[] { k1, v1 });
}
public static <K, V> HashMap<K, V> of (K k1, V v1, K k2, V v2)