mirror of
https://github.com/processing/processing4.git
synced 2026-01-27 10:21:26 +01:00
13 lines
349 B
Java
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;
|
|
}
|
|
}
|