Commit 4ffb8a32 authored by Andrey Filippov's avatar Andrey Filippov
Browse files

working on calculating grids for low frequency pattern

parent 78aea970
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -1413,9 +1413,13 @@ Exception in thread "Thread-3564" java.lang.ArrayIndexOutOfBoundsException: 8970
	    NodeList allNodes=doc.getDocumentElement().getElementsByTagName("*");
	    for (int i=0;i<allNodes.getLength();i++) {
	        String name= allNodes.item(i).getNodeName();
            String value=allNodes.item(i).getFirstChild().getNodeValue();
    		imp.setProperty(name, value);
	        String value="";
	        try {
	        	value=allNodes.item(i).getFirstChild().getNodeValue();
	        } catch(Exception e) {

	        }
    		imp.setProperty(name, value);
	    }

		return true;
Loading