Clean up and switch to java 11

This commit is contained in:
Anadroid
2020-09-11 13:27:21 +02:00
parent 55994b73d8
commit f767f61c4f
16 changed files with 300 additions and 258 deletions
File diff suppressed because it is too large Load Diff
-1
View File
@@ -1723,7 +1723,6 @@ public class PGraphics extends PImage implements PConstants {
* @webref shape:vertex
* @webBrief Stops recording vertices for the shape.
*/
*/
public void endContour() {
showMissingWarning("endContour");
}
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -52,7 +52,7 @@
description="compile the source " >
<!-- Compile the java code from ${src} into ${build} -->
<!-- Note that your environment JAVA_HOME now matters for building -->
<javac srcdir="${src}" destdir="${build}" source="1.8" target="1.8" includeantruntime="true">
<javac srcdir="${src}" destdir="${build}" source="11" target="11" includeantruntime="true">
<classpath refid="class.path" />
</javac>
</target>
@@ -57,9 +57,6 @@ public class ProcessingWeblet extends Standard {
System.out.println("\n===Writing .javadoc sourced reference.===");
writeContents(root);
// write out everything in the include directory:
// see: /api_en/include
System.out.println("===Source code @webref files written.===");