show/hide this revision's text 2 formatting

Looking through some java code and this just does not seem right. To me, it looks like every time you call projects, you will get a new hashmap, so that this statement is always false

*projects.get(soapFileName) 

projects.get(soapFileName) != null
*

Seems like it should have a backing field

public static HashMap<String,WsdlProject> projects = new HashMap<String,WsdlProject> ();


  <String,WsdlProject>();

public Object[] argumentsFromCallSoapui(
            CallT argumentsFromCallSoapui(CallT call, Vector<String> soapuiFiles, HashMap theDPLs,int messageSize)
{
    try {
        for (String soapFileName:soapuiFiles){
            System.out.println("Trying "+soapFileName);
            WsdlProject project ;
            if (projects.get(soapFileName) != null){
                project = projects.get(soapFileName);
            } else {
                project = new WsdlProject(soapFileName);
                projects.put(soapFileName,project);
            }
        [snip]
   }
    } ...
}
show/hide this revision's text 1

Static method in Java

Looking through some java code and this just does not seem right. To me, it looks like every time you call projects, you will get a new hashmap, so that this statement is always false

*projects.get(soapFileName) != null*

Seems like it should have a backing field

 public static HashMap<String,WsdlProject> projects
           = new HashMap<String,WsdlProject> ();


  public Object[] argumentsFromCallSoapui(
            CallT call, Vector<String> soapuiFiles,
            HashMap theDPLs,int messageSize
            )
    {
        try {
            for (String soapFileName:soapuiFiles){

                System.out.println("Trying "+soapFileName);
                WsdlProject project ;
                if (projects.get(soapFileName) != null){
                    project = projects.get(soapFileName);
                } else {
                    project = new WsdlProject(soapFileName);
                    projects.put(soapFileName,project);
                }
[snip]
   }