Fixing library.

This commit is contained in:
Sergiotarxz 2023-11-06 11:37:03 +01:00
parent 86a80d3e00
commit c89db129bc
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
plugins { plugins {
id("rsaves") `java-library`
} }

View File

@ -4,7 +4,7 @@
package rsaves; package rsaves;
public class Library { public class Library {
public boolean someLibraryMethod() { public static boolean someLibraryMethod() {
return true; return true;
} }
} }