Skip to content

Commit

Permalink
updated indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Jan 9, 2024
1 parent 421315d commit be8b3c6
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ public EList<JvmTypeReference> getSuperTypes() {
// add all interfaces to implement
origSuperTypes.addAll(origInterfacesToImplement);
// update snapshot
interfacesToImplementSnapshot =
createSnapshot(origInterfacesToImplement);
interfacesToImplementSnapshot = createSnapshot(origInterfacesToImplement);
}

var origInterfacesToExtend = super.getInterfacesToExtend();
Expand All @@ -110,8 +109,7 @@ public EList<JvmTypeReference> getSuperTypes() {
// add all interfaces to extend
origSuperTypes.addAll(origInterfacesToExtend);
// update snapshot
interfacesToExtendSnapshot =
createSnapshot(origInterfacesToExtend);
interfacesToExtendSnapshot = createSnapshot(origInterfacesToExtend);
}
return origSuperTypes;
}
Expand All @@ -126,8 +124,7 @@ public EList<JvmTypeReference> getInterfacesToImplement() {
// if they're not there, they have been removed through superTypes
origInterfacesToImplement.removeIf(e -> !origSuperTypes.contains(e));
// update snapshot
superTypesSnapshot =
createSnapshot(origSuperTypes);
superTypesSnapshot = createSnapshot(origSuperTypes);
}
return origInterfacesToImplement;
}
Expand All @@ -142,8 +139,7 @@ public EList<JvmTypeReference> getInterfacesToExtend() {
// if they're not there, they have been removed through superTypes
origInterfacesToExtend.removeIf(e -> !origSuperTypes.contains(e));
// update snapshot
superTypesSnapshot =
createSnapshot(origSuperTypes);
superTypesSnapshot = createSnapshot(origSuperTypes);
}
return origInterfacesToExtend;
}
Expand Down

0 comments on commit be8b3c6

Please sign in to comment.