[MOBY-guts] biomoby commit
Paul Gordon
gordonp at dev.open-bio.org
Thu Dec 6 16:39:02 UTC 2007
gordonp
Thu Dec 6 11:39:02 EST 2007
Update of /home/repository/moby/moby-live/Java/src/main/org/biomoby/client
In directory dev.open-bio.org:/tmp/cvs-serv24856/src/main/org/biomoby/client
Modified Files:
CentralCachedCallsImpl.java
Log Message:
Added Generics typechecking
moby-live/Java/src/main/org/biomoby/client CentralCachedCallsImpl.java,1.4,1.5
===================================================================
RCS file: /home/repository/moby/moby-live/Java/src/main/org/biomoby/client/CentralCachedCallsImpl.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- /home/repository/moby/moby-live/Java/src/main/org/biomoby/client/CentralCachedCallsImpl.java 2007/11/30 17:23:16 1.4
+++ /home/repository/moby/moby-live/Java/src/main/org/biomoby/client/CentralCachedCallsImpl.java 2007/12/06 16:39:02 1.5
@@ -32,7 +32,7 @@
public CentralCachedCallsImpl()
throws MobyException {
super (DEFAULT_ENDPOINT, DEFAULT_NAMESPACE);
- inProgressCalls = new HashMap();
+ inProgressCalls = new HashMap<String,String>();
}
/*************************************************************************
@@ -44,7 +44,7 @@
public CentralCachedCallsImpl (String endpoint)
throws MobyException {
super (endpoint, DEFAULT_NAMESPACE);
- inProgressCalls = new HashMap();
+ inProgressCalls = new HashMap<String,String>();
}
/*************************************************************************
@@ -58,7 +58,7 @@
public CentralCachedCallsImpl (String endpoint, String namespace)
throws MobyException {
super (endpoint, namespace);
- inProgressCalls = new HashMap();
+ inProgressCalls = new HashMap<String,String>();
}
/**
More information about the MOBY-guts
mailing list