Skip to content

Commit bd03890

Browse files
committed
Clean up.
1 parent 79d87a6 commit bd03890

File tree

5 files changed

+363
-378
lines changed

5 files changed

+363
-378
lines changed

edu.cuny.hunter.streamrefactoring.core/src/edu/cuny/hunter/streamrefactoring/core/analysis/StreamAnalyzer.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ private static void addImplicitEntryPoints(Collection<Entrypoint> target, Iterab
5555
*/
5656
private Map<EclipseProjectAnalysisEngine<InstanceKey>, Collection<Entrypoint>> enginesWithBuiltCallGraphsToEntrypointsUsed = new HashMap<>();
5757

58+
private boolean findImplicitBenchmarkEntryPoints;
59+
5860
private boolean findImplicitEntryPoints = true;
5961

6062
private boolean findImplicitTestEntryPoints;
61-
62-
private boolean findImplicitBenchmarkEntryPoints;
6363

6464
private Set<Stream> streamSet = new HashSet<>();
6565

@@ -205,11 +205,11 @@ protected Collection<Entrypoint> buildCallGraph(EclipseProjectAnalysisEngine<Ins
205205
// add them as well.
206206
addImplicitEntryPoints(entryPoints, jUnitEntryPoints);
207207
}
208-
208+
209209
if (this.findImplicitBenchmarkEntryPoints) {
210210
// try to find benchmark entry points.
211211
Set<Entrypoint> benchmarkEntryPoints = Util.findBenchmarkEntryPoints(engine.getClassHierarchy());
212-
212+
213213
// add them as well.
214214
addImplicitEntryPoints(entryPoints, benchmarkEntryPoints);
215215
}

0 commit comments

Comments
 (0)