Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
1b41f3f4
Commit
1b41f3f4
authored
12 years ago
by
Dmitry Jemerov
Browse files
Options
Download
Email Patches
Plain Diff
possible NPE
parent
a4cda9f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
platform/lang-impl/src/com/intellij/refactoring/rename/inplace/RenameChooser.java
+1
-1
...om/intellij/refactoring/rename/inplace/RenameChooser.java
with
1 addition
and
1 deletion
+1
-1
platform/lang-impl/src/com/intellij/refactoring/rename/inplace/RenameChooser.java
+
1
-
1
View file @
1b41f3f4
...
@@ -96,7 +96,7 @@ abstract class RenameChooser {
...
@@ -96,7 +96,7 @@ abstract class RenameChooser {
.
setRequestFocus
(
true
)
.
setRequestFocus
(
true
)
.
setItemChoosenCallback
(
new
Runnable
()
{
.
setItemChoosenCallback
(
new
Runnable
()
{
public
void
run
()
{
public
void
run
()
{
runRenameTemplate
(
list
.
getSelectedValue
()
.
equals
(
ALL_OCCURRENCES
)
?
stringUsages
:
new
ArrayList
<
Pair
<
PsiElement
,
TextRange
>>());
runRenameTemplate
(
ALL_OCCURRENCES
.
equals
(
list
.
getSelectedValue
())
?
stringUsages
:
new
ArrayList
<
Pair
<
PsiElement
,
TextRange
>>());
}
}
})
})
.
addListener
(
new
JBPopupAdapter
()
{
.
addListener
(
new
JBPopupAdapter
()
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help