Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Leherbauer2012-01-11 08:30:07 +0000
committerAnton Leherbauer2012-01-11 08:30:07 +0000
commit6f68f6e1710df8eb88b12406dfdb7e15a57fc4c2 (patch)
treeef7f54c3ac359776314f9e2822bb4b53816677ad
parenta7728f959fca89e3f556de4410295ee5014029f3 (diff)
downloadorg.eclipse.cdt-6f68f6e1710df8eb88b12406dfdb7e15a57fc4c2.tar.gz
org.eclipse.cdt-6f68f6e1710df8eb88b12406dfdb7e15a57fc4c2.tar.xz
org.eclipse.cdt-6f68f6e1710df8eb88b12406dfdb7e15a57fc4c2.zip
Fix illegal character encoding issue.
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/extractfunction/ExtractFunctionRefactoring.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/extractfunction/ExtractFunctionRefactoring.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/extractfunction/ExtractFunctionRefactoring.java
index 580b8ac18b0..99ccb7f08f7 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/extractfunction/ExtractFunctionRefactoring.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/extractfunction/ExtractFunctionRefactoring.java
@@ -855,9 +855,9 @@ public class ExtractFunctionRefactoring extends CRefactoring {
}
private void addParameterIfPossible(List<IASTInitializerClause> args,
- List<IASTName> declarations, NameInformation nameInfо) {
- if (!nameInfо.isDeclarationExtracted()) {
- IASTName declaration = nameInfо.getDeclaration();
+ List<IASTName> declarations, NameInformation nameInfo) {
+ if (!nameInfo.isDeclarationExtracted()) {
+ IASTName declaration = nameInfo.getDeclaration();
if (!declarations.contains(declaration)) {
declarations.add(declaration);
IASTIdExpression expression = new CPPASTIdExpression();

Back to the top