Skip to content

Commit 8af42bd

Browse files
committed
Format.
1 parent 53f292a commit 8af42bd

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,8 @@ public Map<IJavaProject, Collection<Entrypoint>> analyze() throws CoreException
213213
* graph.
214214
* @return The {@link Entrypoint}s used in building the {@link CallGraph}.
215215
*/
216-
protected Collection<Entrypoint> buildCallGraph(EclipseProjectAnalysisEngine<InstanceKey> engine) throws IOException, CoreException, CallGraphBuilderCancelException, CancelException {
216+
protected Collection<Entrypoint> buildCallGraph(EclipseProjectAnalysisEngine<InstanceKey> engine)
217+
throws IOException, CoreException, CallGraphBuilderCancelException, CancelException {
217218
// if we haven't built the call graph yet.
218219
if (!this.enginesWithBuiltCallGraphsToEntrypointsUsed.keySet().contains(engine)) {
219220

edu.cuny.hunter.streamrefactoring.tests/test cases/edu/cuny/hunter/streamrefactoring/ui/tests/ConvertStreamToParallelRefactoringTest.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -832,8 +832,7 @@ public void testWithoutEntryPoint() throws Exception {
832832
}
833833

834834
/**
835-
* Test #172.
836-
* This is a control group for testing entry point file.
835+
* Test #172. This is a control group for testing entry point file.
837836
*/
838837
public void testEntryPointFile() throws Exception {
839838
helper(new StreamAnalysisExpectedResult("h1.stream()", Collections.singleton(ExecutionMode.SEQUENTIAL),
@@ -843,8 +842,7 @@ public void testEntryPointFile() throws Exception {
843842
}
844843

845844
/**
846-
* Test #172.
847-
* Test correct entry point file.
845+
* Test #172. Test correct entry point file.
848846
*/
849847
public void testEntryPointFile1() throws Exception {
850848
helper(new StreamAnalysisExpectedResult("h1.stream()", Collections.singleton(ExecutionMode.SEQUENTIAL),
@@ -854,8 +852,8 @@ public void testEntryPointFile1() throws Exception {
854852
}
855853

856854
/**
857-
* Test #172.
858-
* Test entry point file which is not corresponding to the source code.
855+
* Test #172. Test entry point file which is not corresponding to the source
856+
* code.
859857
*/
860858
public void testEntryPointFile2() throws Exception {
861859
helper(new StreamAnalysisExpectedResult("h1.stream()", null, null, false, false, false, null, null, null,

0 commit comments

Comments
 (0)