summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/src/com
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/IntentionPowerPak/src/com')
-rw-r--r--plugins/IntentionPowerPak/src/com/siyeh/ipp/modifiers/ModifierIntention.java4
-rw-r--r--plugins/IntentionPowerPak/src/com/siyeh/ipp/psiutils/ParenthesesUtils.java3
2 files changed, 3 insertions, 4 deletions
diff --git a/plugins/IntentionPowerPak/src/com/siyeh/ipp/modifiers/ModifierIntention.java b/plugins/IntentionPowerPak/src/com/siyeh/ipp/modifiers/ModifierIntention.java
index 767d3481bb93..cdde20ef83e6 100644
--- a/plugins/IntentionPowerPak/src/com/siyeh/ipp/modifiers/ModifierIntention.java
+++ b/plugins/IntentionPowerPak/src/com/siyeh/ipp/modifiers/ModifierIntention.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2012 JetBrains s.r.o.
+ * Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -94,7 +94,7 @@ abstract class ModifierIntention extends Intention implements LowPriorityAction
final String name = FileUtil.getNameWithoutExtension(javaFile.getName());
final String className = aClass.getName();
if (name.equals(className)) {
- MultiMap.emptyInstance();
+ return MultiMap.emptyInstance();
}
final MultiMap<PsiElement, String> conflicts = new MultiMap();
conflicts.putValue(aClass, IntentionPowerPackBundle.message(
diff --git a/plugins/IntentionPowerPak/src/com/siyeh/ipp/psiutils/ParenthesesUtils.java b/plugins/IntentionPowerPak/src/com/siyeh/ipp/psiutils/ParenthesesUtils.java
index 67b5f539a39d..b4d97f52687d 100644
--- a/plugins/IntentionPowerPak/src/com/siyeh/ipp/psiutils/ParenthesesUtils.java
+++ b/plugins/IntentionPowerPak/src/com/siyeh/ipp/psiutils/ParenthesesUtils.java
@@ -455,8 +455,7 @@ public class ParenthesesUtils {
return true;
}
}
- return false;
}
- return parentPrecedence != childPrecedence;
+ return parentPrecedence < childPrecedence;
}
}