Exemplo n.º 1
0
 protected String makeDaemon() {
   try {
     NativeCalls.getInstance().daemonize(null);
   } catch (UnsupportedOperationException e) {
     return "WARNING: " + e.getMessage();
   } catch (IllegalStateException ignored) {
   }
   return null;
 }