Skip to content

Commit 125bc8e

Browse files
authored
docs: add print() method declaration to PMatrix interface
1 parent 140e8fc commit 125bc8e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

core/src/processing/core/PMatrix.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,5 @@ public void preApply(float n00, float n01, float n02, float n03,
208208
/**
209209
* Print the matrix data to the console.
210210
*/
211-
default void print() {
212-
System.out.println(this);
213-
}
211+
public void print();
214212
}

0 commit comments

Comments
 (0)