Skip to content

Commit e8dfd9e

Browse files
authored
Default to false for benchmark entry points.
1 parent df43db7 commit e8dfd9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

edu.cuny.hunter.streamrefactoring.core/src/edu/cuny/hunter/streamrefactoring/core/refactorings/ConvertToParallelStreamRefactoringProcessor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,12 @@ public static void setLoggingLevel(int level) {
143143
private boolean useImplicitBenchmarkEntrypoints = false;
144144

145145
public ConvertToParallelStreamRefactoringProcessor() throws JavaModelException {
146-
this(null, null, false, true, false, true, Optional.empty());
146+
this(null, null, false, true, false, false, Optional.empty());
147147
}
148148

149149
public ConvertToParallelStreamRefactoringProcessor(final CodeGenerationSettings settings,
150150
Optional<IProgressMonitor> monitor) throws JavaModelException {
151-
this(null, settings, false, true, false, true, monitor);
151+
this(null, settings, false, true, false, false, monitor);
152152
}
153153

154154
public ConvertToParallelStreamRefactoringProcessor(IJavaProject[] javaProjects,
@@ -499,4 +499,4 @@ private void manageCompilationUnit(final TextEditBasedChangeManager manager, Com
499499
protected void setStreamSet(Set<Stream> streamSet) {
500500
this.streamSet = streamSet;
501501
}
502-
}
502+
}

0 commit comments

Comments
 (0)