Skip to content

Commit

Permalink
ci: Strip annotations from runetek3
Browse files Browse the repository at this point in the history
  • Loading branch information
Pazaz committed May 1, 2024
1 parent b71aed5 commit 68491ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/src/main/java/lostcity/tools/RemoveAnnotations.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
public class RemoveAnnotations {
public static void main(String[] args) {
// in order to build for ancient Java versions, iterate through every single .java file and remove annotations (Java 5+)
Collection<File> source = FileUtils.listFiles(new File("client/src/main/java"), new String[]{ "java" }, true);
Collection<File> source = FileUtils.listFiles(new File("runetek3/src/main/java"), new String[]{ "java" }, true);
source.addAll(FileUtils.listFiles(new File("client/src/main/java"), new String[]{ "java" }, true));
source.addAll(FileUtils.listFiles(new File("mapview/src/main/java"), new String[]{ "java" }, true));
for (Iterator<File> iterator = source.iterator(); iterator.hasNext();) {
File file = iterator.next();
Expand Down

0 comments on commit 68491ae

Please sign in to comment.