You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicstaticfinalStringLICENSE = "JFunge - A standard-conforming Befunge-98 and Trefunge-98 interpreter\n" +
8
-
"Copyright (C) 2022 FalsePattern\n" +
9
-
"\n" +
10
-
"This program is free software: you can redistribute it and/or modify\n" +
11
-
"it under the terms of the GNU General Public License as published by\n" +
12
-
"the Free Software Foundation, either version 3 of the License, or\n" +
13
-
"(at your option) any later version.\n" +
14
-
"\n" +
15
-
"This program is distributed in the hope that it will be useful,\n" +
16
-
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +
17
-
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +
18
-
"GNU General Public License for more details.\n" +
19
-
"\n" +
20
-
"You should have received a copy of the GNU General Public License\n" +
21
-
"along with this program. If not, see <https://www.gnu.org/licenses/>.";
7
+
publicstaticfinalStringLICENSE = "JFunge - A standard-conforming Befunge-98 and Trefunge-98 interpreter\n" + "Copyright (C) 2022 FalsePattern\n" + "\n" + "This program is free software: you can redistribute it and/or modify\n" + "it under the terms of the GNU General Public License as published by\n" + "the Free Software Foundation, either version 3 of the License, or\n" + "(at your option) any later version.\n" + "\n" + "This program is distributed in the hope that it will be useful,\n" + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" + "GNU General Public License for more details.\n" + "\n" + "You should have received a copy of the GNU General Public License\n" + "along with this program. If not, see <https://www.gnu.org/licenses/>.";
Copy file name to clipboardExpand all lines: src/main/java/com/falsepattern/jfunge/Releasable.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
packagecom.falsepattern.jfunge;
2
2
3
-
publicinterfaceReleasableextendsAutoCloseable{
3
+
publicinterfaceReleasableextendsAutoCloseable{
4
4
/**
5
5
* When called, it signals that this specific object is no longer referenced anywhere in the code, and can be freely deleted or even reused later by the provider.
0 commit comments