Save the current application via instrumentation.
()
| 510 | * Save the current application via instrumentation. |
| 511 | */ |
| 512 | public void saveAgent() { |
| 513 | try { |
| 514 | InstrumentationResource.getInstance().save(); |
| 515 | } catch(Throwable t) { |
| 516 | error(t, "Failed to save agent changes"); |
| 517 | ExceptionAlert.show(t, "Failed to save agent changes"); |
| 518 | } |
| 519 | } |
| 520 | |
| 521 | /** |
| 522 | * Save the current workspace to a file. |
nothing calls this directly
no test coverage detected