Skip to content

Commit e2249d9

Browse files
committed
Rename.
1 parent d2aa410 commit e2249d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

edu.cuny.hunter.hybridize.core/src/edu/cuny/hunter/hybridize/core/refactorings/HybridizeFunctionRefactoringProcessor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private static RefactoringStatus checkParameters(Function func) {
5353
public HybridizeFunctionRefactoringProcessor() {
5454
}
5555

56-
public HybridizeFunctionRefactoringProcessor(Set<FunctionDefinition> functionDefinitions, IProgressMonitor monitor)
56+
public HybridizeFunctionRefactoringProcessor(Set<FunctionDefinition> functionDefinitionSet, IProgressMonitor monitor)
5757
throws TooManyMatchesException, BadLocationException {
5858
// Force the use of typeshed. It's an experimental feature of PyDev.
5959
InterpreterGeneralPreferences.FORCE_USE_TYPESHED = Boolean.TRUE;
@@ -62,7 +62,7 @@ public HybridizeFunctionRefactoringProcessor(Set<FunctionDefinition> functionDef
6262
if (functions != null) {
6363
Set<Function> functionSet = this.getFunctions();
6464

65-
for (FunctionDefinition fd : functionDefinitions) {
65+
for (FunctionDefinition fd : functionDefinitionSet) {
6666
Function function = new Function(fd, monitor);
6767

6868
// Add the Function to the Function set.

0 commit comments

Comments
 (0)