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 fdb1725 commit 9c569b8Copy full SHA for 9c569b8
edu.cuny.hunter.streamrefactoring.core/src/edu/cuny/hunter/streamrefactoring/core/analysis/Util.java
@@ -221,7 +221,7 @@ public static Set<Entrypoint> findEntryPoints(IClassHierarchy classHierarchy) {
221
final Set<Entrypoint> result = new HashSet<>();
222
223
for (IClass klass : classHierarchy)
224
- if (!(isJDKClass(klass) || isLibraryClass(klass)))
+ if (!(isJDKClass(klass) || isLibraryClass(klass))) {
225
boolean entryPointClass = false;
226
boolean addedInstanceMethod = false;
227
0 commit comments