Commit 916b92b1 authored by Derek DeMoro's avatar Derek DeMoro Committed by derek

Accept war file.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1134 b35dd754-fafc-0310-a699-88a17e54d16e
parent 90d42a50
...@@ -76,7 +76,7 @@ public class Launcher { ...@@ -76,7 +76,7 @@ public class Launcher {
frame = new DroppableFrame() { frame = new DroppableFrame() {
public void fileDropped(File file) { public void fileDropped(File file) {
String fileName = file.getName(); String fileName = file.getName();
if (fileName.endsWith(".jar")) { if (fileName.endsWith(".jar") || fileName.endsWith(".war")) {
installPlugin(file); installPlugin(file);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment