Commit 62fc291a authored by ppatro's avatar ppatro

fix for remove import statement and type cast of maxline no


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@105091 ce508802-f39f-4f6c-b175-0d175dae99d5
parent ee042d3a
......@@ -27,7 +27,6 @@ import javax.ejb.Stateless;
import org.w3c.dom.*;
import com.ibm.db2.jcc.a.c;
@Stateless
public class IndentReqConf extends ActionHandlerEJB implements IndentReqConfLocal, IndentReqConfRemote
......
......@@ -4389,7 +4389,7 @@ public class ScontractGwtIC extends ValidatorEJB implements ScontractGwtICLocal,
}
}
System.out.println("LineNumberList ["+lineNoList+"]");
maxLineNo = Collections.max(lineNoList);
maxLineNo = (int)Collections.max(lineNoList);
}
catch(Exception e)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment