Skip to content

Commit b3d349d

Browse files
committed
Set identifier for training methods
1 parent f455d02 commit b3d349d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

swan-assist/src/main/java/de/fraunhofer/iem/swan/assist/ui/MethodListTree.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,10 +587,12 @@ private void loadMethods() {
587587

588588
classNode.add(addCategoriesToNode(method));
589589

590-
if (method.getMethod().isKnown())
590+
if (method.getMethod().isKnown()) {
591+
method.setTrainingMethod(true);
591592
standardSrms.add(classNode);
592-
else
593+
}else{
593594
currentProject.add(classNode);
595+
}
594596
}
595597
}
596598

0 commit comments

Comments
 (0)