We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d99dd13 commit 3ace61eCopy full SHA for 3ace61e
edu.cuny.hunter.streamrefactoring.core/src/edu/cuny/hunter/streamrefactoring/core/analysis/Util.java
@@ -274,6 +274,8 @@ public static Collection<TypeAbstraction> getPossibleTypesInterprocedurally(CGNo
274
String fqn = method.getDeclaringClass().getName().getPackage().toUnicodeString() + "."
275
+ method.getDeclaringClass().getName().getClassName().toUnicodeString();
276
IType type = enclosingProject.findType(fqn);
277
+ // FIXME: Need to (i) exclude from result timer and (ii) use the cache in
278
+ // ConvertToParallelStreamRefactoringProcessor #141.
279
CompilationUnit unit = RefactoringASTParser.parseWithASTProvider(type.getTypeRoot(), true, null);
280
281
// we have the CompilationUnit corresponding to the
0 commit comments