Skip to content

Commit 5a6ded2

Browse files
committed
changed the naming in class box
1 parent b4a70b7 commit 5a6ded2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/paintcomponents/java/lazy/ClassPaintComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public Class getDisplayingClass() {
2323
}
2424

2525
public ClassPaintComponent(Class displayingClass, int x, int y) {
26-
super(displayingClass.getName(), x, y);
26+
super("class " + displayingClass.getName(), x, y);
2727
this.displayingClass = displayingClass;
2828
//make sure we set correct type for outgoint edges
2929
this.getFromPoints().get(0).setExpectedType(new JavaType(displayingClass.getClass()));

0 commit comments

Comments
 (0)