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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user