(String arg)
| 32 | String defaultNBins, defaultRange; |
| 33 | |
| 34 | public void run(String arg) { |
| 35 | ResultsTable rt=ResultsTable.getResultsTable(); |
| 36 | if (rt.size()==0) { |
| 37 | IJ.error("Distribution", "The \"Results\" table is empty"); |
| 38 | return; |
| 39 | } |
| 40 | run(rt); |
| 41 | } |
| 42 | |
| 43 | public void run(ResultsTable rt) { |
| 44 | if (rt==null) |
nothing calls this directly
no test coverage detected