| Index: samples/total/server/TotalRunner.dart | 
| diff --git a/samples/total/server/TotalRunner.dart b/samples/total/server/TotalRunner.dart | 
| index 20f668d34d7b1609f63bea0cb637a3c78ceb405f..07868e1292ae82da45d620b7373c4bd897178449 100755 | 
| --- a/samples/total/server/TotalRunner.dart | 
| +++ b/samples/total/server/TotalRunner.dart | 
| @@ -52,9 +52,9 @@ class ServerRunner { | 
| if (foundExec == null) { | 
| print("No executable found on DART_EXECS:\n" + DART_EXECS); | 
| exitCallback(1, this); | 
| -      return; | 
| +      return; | 
| } | 
| -    Process dart = new Process.start(foundExec, [_serverMain]); | 
| +    Process dart = Process.start(foundExec, [_serverMain]); | 
|  | 
| dart.onExit = (int status) { | 
| dart.close(); | 
|  |