Changed tas to spaces
This commit is contained in:
parent
a938b70d57
commit
b1c53d88ae
196 changed files with 14016 additions and 14035 deletions
10
Zutil.iml
10
Zutil.iml
|
|
@ -45,15 +45,5 @@
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" />
|
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" />
|
||||||
<orderEntry type="library" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
|
<orderEntry type="library" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
|
||||||
<orderEntry type="library" name="Maven: com.carrotsearch:junit-benchmarks:0.7.2" level="project" />
|
<orderEntry type="library" name="Maven: com.carrotsearch:junit-benchmarks:0.7.2" level="project" />
|
||||||
<orderEntry type="library" name="Maven: commons-fileupload:commons-fileupload:1.2.1" level="project" />
|
|
||||||
<orderEntry type="library" name="Maven: commons-io:commons-io:2.5" level="project" />
|
|
||||||
<orderEntry type="library" name="Maven: dom4j:dom4j:1.6.1" level="project" />
|
|
||||||
<orderEntry type="library" name="Maven: xml-apis:xml-apis:1.0.b2" level="project" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="Maven: javax.servlet:javax.servlet-api:3.1.0" level="project" />
|
|
||||||
<orderEntry type="library" name="Maven: mysql:mysql-connector-java:5.1.36" level="project" />
|
|
||||||
<orderEntry type="library" name="Maven: org.xerial:sqlite-jdbc:3.8.11.2" level="project" />
|
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" />
|
|
||||||
<orderEntry type="library" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
|
|
||||||
<orderEntry type="library" name="Maven: com.carrotsearch:junit-benchmarks:0.7.2" level="project" />
|
|
||||||
</component>
|
</component>
|
||||||
</module>
|
</module>
|
||||||
|
|
@ -66,6 +66,6 @@ public class BreadthFirstSearch implements PathFinder{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return new LinkedList<PathNode>();
|
return new LinkedList<>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,4 @@ public class SortableArrayList<T> implements SortableDataList<T>{
|
||||||
Comparable bb = (Comparable)b;
|
Comparable bb = (Comparable)b;
|
||||||
return aa.compareTo(bb);
|
return aa.compareTo(bb);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,4 @@ public class SortableComparableArray implements SortableDataList<Comparable>{
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -83,6 +83,4 @@ public class SobelEdgeDetectionFilter extends ImageFilterProcessor{
|
||||||
|
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,6 @@ public class BufferedBoundaryInputStream extends FilterInputStream{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the next byte from the stream or -1 if EOF or stream has encountered a boundary
|
* @return the next byte from the stream or -1 if EOF or stream has encountered a boundary
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -41,5 +41,5 @@ public interface ThreadedUDPNetworkThread extends Runnable{
|
||||||
* @param packet is the received packet
|
* @param packet is the received packet
|
||||||
* @param network is the network class that received the packet
|
* @param network is the network class that received the packet
|
||||||
*/
|
*/
|
||||||
public void receivedPacket(DatagramPacket packet, ThreadedUDPNetwork network);
|
void receivedPacket(DatagramPacket packet, ThreadedUDPNetwork network);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -34,12 +34,12 @@ public interface WizardListener {
|
||||||
* @param page is the WizardPage where the cancel button was pressed
|
* @param page is the WizardPage where the cancel button was pressed
|
||||||
* @param values is the values until now
|
* @param values is the values until now
|
||||||
*/
|
*/
|
||||||
public void onCancel(WizardPage page, HashMap<String, Object> values);
|
void onCancel(WizardPage page, HashMap<String, Object> values);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Will be called when the wizard is finished
|
* Will be called when the wizard is finished
|
||||||
*
|
*
|
||||||
* @param values is the values until now
|
* @param values is the values until now
|
||||||
*/
|
*/
|
||||||
public void onFinished(HashMap<String, Object> values);
|
void onFinished(HashMap<String, Object> values);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -56,11 +56,11 @@
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<FORM id="AjaxFileUpload">
|
<form id="AjaxFileUpload">
|
||||||
<INPUT type="file" name="file" multiple/>
|
<input type="file" name="file" multiple/>
|
||||||
<INPUT type="submit" />
|
<input type="submit" />
|
||||||
</FORM>
|
</form>
|
||||||
<UL id="UploadQueue">
|
<ul id="UploadQueue">
|
||||||
<li id="1367232194">
|
<li id="1367232194">
|
||||||
<div class="progressbar">
|
<div class="progressbar">
|
||||||
<b id="progress" style="width: 70%; display: block; ">
|
<b id="progress" style="width: 70%; display: block; ">
|
||||||
|
|
@ -68,6 +68,6 @@
|
||||||
</b>
|
</b>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</UL>
|
</ul>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue