Commit 3bb413a0 authored by dpawar's avatar dpawar

remove not used code


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94301 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 79e15363
...@@ -780,14 +780,7 @@ public class ItemSerIC extends ValidatorEJB implements ItemSerICLocal, ItemSerIC ...@@ -780,14 +780,7 @@ public class ItemSerIC extends ValidatorEJB implements ItemSerICLocal, ItemSerIC
parentNodeList = dom.getElementsByTagName("Detail1"); parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0); parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes(); childNodeList = parentNode.getChildNodes();
valueXmlString.append("<Detail1>"); valueXmlString.append("<Detail1>");
int childNodeListLength = childNodeList.getLength();
do
{
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
ctr ++;
}while(ctr < childNodeListLength && ! childNodeName.equals(currentColumn));
if(currentColumn.trim().equalsIgnoreCase("itm_defaultedit")) if(currentColumn.trim().equalsIgnoreCase("itm_defaultedit"))
{ {
......
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