|
From: <tr...@us...> - 2003-07-16 02:33:41
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core
In directory sc8-pr-cvs1:/tmp/cvs-serv27890/com/babeldoc/core
Modified Files:
Pair.java
Log Message:
removed old code and changed implementation to interface in an interface.
Index: Pair.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/Pair.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Pair.java 27 Jun 2003 02:19:57 -0000 1.3
--- Pair.java 16 Jul 2003 02:33:38 -0000 1.4
***************
*** 69,72 ****
--- 69,73 ----
import java.util.HashMap;
+ import java.util.Map;
***************
*** 110,114 ****
* @return hashtable with keys as firsts and values as seconds
*/
! public static HashMap getMap(Pair[] pairs) {
HashMap map = new HashMap();
--- 111,115 ----
* @return hashtable with keys as firsts and values as seconds
*/
! public static Map getMap(Pair[] pairs) {
HashMap map = new HashMap();
|