]> source.dussan.org Git - aspectj.git/commitdiff
231396: refactoring: CollectionUtil type removed
authoraclement <aclement>
Mon, 12 May 2008 16:50:22 +0000 (16:50 +0000)
committeraclement <aclement>
Mon, 12 May 2008 16:50:22 +0000 (16:50 +0000)
util/src/org/aspectj/util/CollectionUtil.java [deleted file]

diff --git a/util/src/org/aspectj/util/CollectionUtil.java b/util/src/org/aspectj/util/CollectionUtil.java
deleted file mode 100644 (file)
index a8efa59..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-/* *******************************************************************
- * Copyright (c) 1999-2001 Xerox Corporation, 
- *               2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Eclipse Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/epl-v10.html 
- *  
- * Contributors: 
- *     Xerox/PARC     initial implementation 
- * ******************************************************************/
-
-
-package org.aspectj.util;
-
-
-import java.util.*;
-
-public class CollectionUtil {
-       public static final String[] NO_STRINGS = new String[0];
-       
-       
-    public static List getListInMap(Map map, Object key) {
-        List list = (List)map.get(key);
-        if (list == null) {
-            list = new ArrayList();
-            map.put(key, list);
-        }
-        return list;
-    }
-
-    public static SortedSet getSortedSetInMap(Map map, Object key) {
-        SortedSet list = (SortedSet)map.get(key);
-        if (list == null) {
-            list = new TreeSet();
-            map.put(key, list);
-        }
-        return list;
-    }
-
-    public static Set getSetInMap(Map map, Object key) {
-        Set list = (Set)map.get(key);
-        if (list == null) {
-            list = new HashSet();
-            map.put(key, list);
-        }
-        return list;
-    }
-
-    public static Map getMapInMap(Map map, Object key) {
-        Map list = (Map)map.get(key);
-        if (list == null) {
-            list = new HashMap();
-            map.put(key, list);
-        }
-        return list;
-    }
-    
-}