(MouseEvent e)
| 490 | } |
| 491 | |
| 492 | public void mousePressed(MouseEvent e) { |
| 493 | Undo.reset(); |
| 494 | if (!Prefs.noClickToGC) |
| 495 | System.gc(); |
| 496 | IJ.showStatus(version()+IJ.freeMemory()); |
| 497 | if (IJ.debugMode) |
| 498 | IJ.log("Windows: "+WindowManager.getWindowCount()); |
| 499 | } |
| 500 | |
| 501 | public String getInfo() { |
| 502 | return version()+System.getProperty("os.name")+" "+System.getProperty("os.version")+"; "+IJ.freeMemory(); |
nothing calls this directly
no test coverage detected