Commit 2b9b7bec authored by Matt Tucker's avatar Matt Tucker Committed by matt

Fixed compile warnings.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@792 b35dd754-fafc-0310-a699-88a17e54d16e
parent b030f80b
...@@ -324,8 +324,8 @@ public class XMPPServer { ...@@ -324,8 +324,8 @@ public class XMPPServer {
if (isStandAlone() && isRestartable()) { if (isStandAlone() && isRestartable()) {
try { try {
Class wrapperClass = Class.forName(WRAPPER_CLASSNAME); Class wrapperClass = Class.forName(WRAPPER_CLASSNAME);
Method restartMethod = wrapperClass.getMethod("restart", null); Method restartMethod = wrapperClass.getMethod("restart", (Class [])null);
restartMethod.invoke(null, null); restartMethod.invoke(null, (Object [])null);
} }
catch (Exception e) { catch (Exception e) {
Log.error("Could not restart container", e); Log.error("Could not restart container", e);
......
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