Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Commit a661fab

Browse files
authored
Add files via upload
1 parent c63730c commit a661fab

File tree

3 files changed

+445
-1
lines changed

3 files changed

+445
-1
lines changed

compilestandard.java

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,17 @@ public static void main(String[] args) throws IOException{
2323
while ((st = f.readLine()) != null) {
2424
full=full+st+"\n";
2525
}
26-
print(full.replace("if(!(lock)) {return null;}", ""));
26+
String text=full.replace("if(!(lock)) {return null;}", "");
27+
text=text.replace("public abstract class usacotools","public abstract class utools");
28+
print(text);
29+
PrintWriter pw=mwriter("utools.java");
30+
if(args[0].equals("eclipse")) {
31+
pw=mwriter("src/utools.java");
32+
}else {
33+
34+
}
35+
pw.println(text);
36+
pw.close();
37+
2738
}
2839
}

usacotools.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,9 @@ public static void LOCK() {
422422
public static void UNLOCK() {
423423
if(!(_lock)) {lock=false;}
424424
}
425+
425426
public static void main(String[] args) throws Exception{
426427
print("the demo has been removed do to lack of support. Instead we display info about the library.");
427428
}
429+
428430
}

0 commit comments

Comments
 (0)