(String args[])
| 919 | |
| 920 | // Is there another instance of ImageJ? If so, send it the arguments and quit. |
| 921 | static boolean isRunning(String args[]) { |
| 922 | return OtherInstance.sendArguments(args); |
| 923 | } |
| 924 | |
| 925 | /** Returns the port that ImageJ checks on startup to see if another instance is running. |
| 926 | * @see ij.OtherInstance |