Skip to content

Commit 44ccb3d

Browse files
committed
Removed outdated ant backwards compatibility marks
1 parent 420ccbb commit 44ccb3d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

app/ant/processing/app/Schema.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
import processing.app.ui.Editor;
44

5+
// Stub class for backwards compatibility with the ant-build system
6+
// This class is not used in the Gradle build system
7+
// The actual implementation is in src/.../Schema.kt
58
public class Schema {
69
public static Editor handleSchema(String input, Base base) {
710
return null;

app/ant/processing/app/contrib/ui/ContributionManagerKt.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
import processing.app.contrib.ContributionManager;
44

5+
// Stub class for backwards compatibility with the ant-build system
6+
// This class is not used in the Gradle build system
7+
// The actual implementation is in src/.../ContributionManager.kt
58
public final class ContributionManagerKt {
69
public static void openContributionsManager() {
710
ContributionManager.openLibraries();

app/build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,9 @@ sourceSets{
3232
main{
3333
java{
3434
srcDirs("src")
35-
exclude("**/*Kt.java")
3635
}
3736
kotlin{
3837
srcDirs("src")
39-
exclude("**/*Kt.java")
4038
}
4139
}
4240
}

0 commit comments

Comments
 (0)