MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / deleteColumn

Method deleteColumn

ij/src/main/java/ij/macro/Functions.java:7681–7692  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7679 }
7680
7681 private Variable deleteColumn() {
7682 String column = getFirstString();
7683 String title = getTitle();
7684 ResultsTable rt = getResultsTable(title);
7685 try {
7686 rt.deleteColumn(column);
7687 unUpdatedTable = rt;
7688 } catch (Exception e) {
7689 interp.error(e.getMessage());
7690 }
7691 return null;
7692 }
7693
7694 private Variable getColumn() {
7695 String col = getFirstString();

Callers 1

doTableMethod · 0.95

Calls 6

getFirstStringMethod · 0.95
getTitleMethod · 0.95
getResultsTableMethod · 0.95
deleteColumnMethod · 0.95
errorMethod · 0.45
getMessageMethod · 0.45

Tested by

no test coverage detected