Skip to content

Commit

Permalink
NPE when uninstalling plugin #34
Browse files Browse the repository at this point in the history
  • Loading branch information
markiewb committed Mar 6, 2016
1 parent 31309d4 commit a95ef1c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion netbeans/src/net/sickill/off/netbeans/Bundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ OpenIDE-Module-Long-Description=\
Basically it works like this: you type only several characters of filename you are searching for and you get list of all files matching your pattern. \
For example when you are looking for FooBar.java you can type fbj and you will find it. \
It really helps navigating through the project (especially bigger ones) as you don't need to use a mouse nor locate filename visually in project tree but just use filename shortcuts.\n\n\n\
<h2>Updates</h2>\n<h3>1.3</h3>\n<ul>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/27">Feature</a>]: Add mnemonics to search dialog (improved keyboard support)</li>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/31">Task</a>]: Rename action to "Go to File (Fa&st)..." to match the other GoTo actions</li>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/22">Bugfix</a>]: Project drop down list, shouldn't be closed after selecting an other project (improved keyboard support)</li>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/29">Bugfix</a>]: Action is enabled, even if there are no open projects</li>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/30">Bugfix</a>]: Fixed NPE when opening dialog</li>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/33">Bugfix</a>]: Fixed exceptions when switching projects too fast</li>\n\n\n </ul>
<h2>Updates</h2>\n<h3>1.3</h3>\n<ul>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/27">Feature</a>]: Add mnemonics to search dialog (improved keyboard support)</li>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/31">Task</a>]: Rename action to "Go to File (Fa&st)..." to match the other GoTo actions</li>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/22">Bugfix</a>]: Project drop down list, shouldn't be closed after selecting an other project (improved keyboard support)</li>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/29">Bugfix</a>]: Action is enabled, even if there are no open projects</li>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/30">Bugfix</a>]: Fixed NPE when opening dialog</li>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/33">Bugfix</a>]: Fixed exceptions when switching projects too fast</li>\n<li>[<a href="https://github.com/sickill/off-plugin/issues/34">Bugfix</a>]: Fixed NPE when uninstalling plugin</li>\n\n\n </ul>
OpenIDE-Module-Name=Open File Fast
OpenIDE-Module-Short-Description=Open File Fast allows for quick finding and opening project files by entering only few characters of filename. It's like Textmate's or Netbeans' Go-To-File dialog but on steroids!
4 changes: 3 additions & 1 deletion netbeans/src/net/sickill/off/netbeans/Installer.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ public void restored() {

@Override
public void uninstalled() {
NetbeansDialog.off.close();
if (null != NetbeansDialog.off) {
NetbeansDialog.off.close();
}
}

}

0 comments on commit a95ef1c

Please sign in to comment.