Skip to content

Commit 5a94755

Browse files
committed
Update Display, change << to >>> in MethodPaintComponent
1 parent 59a07d2 commit 5a94755

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/paintcomponents/java/lazy/MethodPaintComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ private void init() {
6262
// prepare String
6363
StringBuilder s = new StringBuilder();
6464
s.append(this.displayingMethod.toString() + "\n");
65-
s.append("<< Operating Instance :: " + this.displayingMethod.toString()
65+
s.append(">>> Operating Instance :: " + this.displayingMethod.toString()
6666
+ "\n");
6767
for (int i = 0; i < paramTypes.length; i++) {
6868
s.append("arg" + i + " :: " + paramTypes[i].getName() + "\n");

0 commit comments

Comments
 (0)