@@ -45,7 +45,7 @@ public class PacsCriticalNode {
for (String x : rules) {
for (String y : rules) {
- if (y.contains(x)) {
+ if (!y.equals(x) && y.contains(x)) {
removelt.add(x);
}