mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Clean up and switch to java 11
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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.===");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user