Change status code passed to System.exit()

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@947078 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
nash 2010-05-21 17:17:18 +00:00
parent e05bc3d5f8
commit ccd57c270d

View file

@ -35,6 +35,6 @@ public class SMSGatewayRMIServiceBootstrap {
System.out.println("Press enter to shutdown.");
System.in.read();
rmiRegistry.unbind(serviceName);
System.exit(-1);
System.exit(0);
}
}