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

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ public static void main(String[] args) throws IOException{
1717
BufferedReader f;
1818
if(args.length==1) {
1919
if(args[0].equals("eclipse")) {
20-
f=mreader("src/usacotools.java");
20+
f=mreader("src/javatools.java");
2121
}else {
22-
f=mreader("usacotools.java");
22+
f=mreader("javatools.java");
2323
}
2424

2525
}else {
26-
f=mreader("usacotools.java");
26+
f=mreader("javatools.java");
2727
}
2828

2929
print("build");
@@ -35,20 +35,20 @@ public static void main(String[] args) throws IOException{
3535
full=full+st+"\n";
3636
}
3737
String text=full.replace("if(!(lock)) {return null;}", "");
38-
text=text.replace("public abstract class usacotools","public abstract class utools");
38+
text=text.replace("public abstract class usacotools","public abstract class jt");
3939
print(text);
40-
PrintWriter pw=mwriter("utools.java");
40+
PrintWriter pw=mwriter("jt.java");
4141
if(args[0].equals("eclipse")) {
42-
pw=mwriter("src/utools.java");
42+
pw=mwriter("src/jt.java");
4343
}else {
4444

4545
}
4646
pw.println(text);
4747
pw.close();
48-
print("utools.java is the one you should copy into your code but usacotools is the one you should extend");
48+
print("jt.java is the one you should copy into your code but usacotools is the one you should extend");
4949
try{
50-
print("utools.java SHA256: "+sha256(text));
51-
print("usacotools.java SHA256: "+sha256(full));
50+
print("jt.java SHA256: "+sha256(text));
51+
print("javatools.java SHA256: "+sha256(full));
5252
}catch(Exception e) {
5353
e.printStackTrace();
5454
}

0 commit comments

Comments
 (0)