We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4a70b7 commit 5a6ded2Copy full SHA for 5a6ded2
1 file changed
src/paintcomponents/java/lazy/ClassPaintComponent.java
@@ -23,7 +23,7 @@ public Class getDisplayingClass() {
23
}
24
25
public ClassPaintComponent(Class displayingClass, int x, int y) {
26
- super(displayingClass.getName(), x, y);
+ super("class " + displayingClass.getName(), x, y);
27
this.displayingClass = displayingClass;
28
//make sure we set correct type for outgoint edges
29
this.getFromPoints().get(0).setExpectedType(new JavaType(displayingClass.getClass()));
0 commit comments