We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d18cba commit 7310eb7Copy full SHA for 7310eb7
src/main/java/gr/uom/java/xmi/UMLCommentGroup.java
@@ -25,7 +25,7 @@ public List<UMLComment> getGroup() {
25
}
26
27
public boolean sameText(UMLCommentGroup other) {
28
- if(this.group.size() == other.group.size() && this.group.size() > 0) {
+ if(this.group.size() == other.group.size() && this.group.size() > 1) {
29
int matches = 0;
30
for(int i=0; i<this.group.size(); i++) {
31
if(this.group.get(i).getText().equals(other.group.get(i).getText())) {
0 commit comments