Skip to content

Commit cce8a85

Browse files
committed
Remove old comments.
1 parent 7a2131e commit cce8a85

File tree

1 file changed

+0
-5
lines changed
  • edu.cuny.hunter.streamrefactoring.core/src/edu/cuny/hunter/streamrefactoring/core/analysis

1 file changed

+0
-5
lines changed

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

-5
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,6 @@ void addStatusEntry(PreconditionFailure failure, String message) {
289289
protected void buildCallGraph() throws IOException, CoreException, CallGraphBuilderCancelException, CancelException,
290290
InvalidClassFileException, NoEntryPointException {
291291
if (!this.isCallGraphBuilt()) {
292-
// FIXME: Do we want a different entry point?
293292
// TODO: Do we need to build the call graph for each stream?
294293
Set<Entrypoint> entryPoints = edu.cuny.hunter.streamrefactoring.core.analysis.Util
295294
.findEntryPoints(getAnalysisEngine().getClassHierarchy());
@@ -300,10 +299,6 @@ protected void buildCallGraph() throws IOException, CoreException, CallGraphBuil
300299
options.setReflectionOptions(ReflectionOptions.NONE);
301300
options.getSSAOptions().setPiNodePolicy(SSAOptions.getAllBuiltInPiNodes());
302301

303-
// FIXME: Do we need to build a new call graph for each entry point?
304-
// Doesn't make sense. Maybe we need to collect all enclosing
305-
// methods
306-
// and use those as entry points.
307302
try {
308303
getAnalysisEngine().buildSafeCallGraph(options);
309304
} catch (IllegalStateException e) {

0 commit comments

Comments
 (0)