Files
processing4/app/ant/processing/app/Schema.java
2025-02-04 16:18:29 +01:00

13 lines
349 B
Java

package processing.app;
import processing.app.ui.Editor;
// Stub class for backwards compatibility with the ant-build system
// This class is not used in the Gradle build system
// The actual implementation is in src/.../Schema.kt
public class Schema {
public static Editor handleSchema(String input, Base base) {
return null;
}
}