Method
save
(OutputStream out, String comment)
Source from the content-addressed store, hash-verified
| 442 | /// writing -- use `#store` instead for better exception |
| 443 | /// handling. |
| 444 | @Deprecated |
| 445 | @SuppressWarnings("PMD.EmptyCatchBlock") |
| 446 | public void save(OutputStream out, String comment) { |
| 447 | try { |
| 448 | store(out, comment); |
| 449 | } catch (IOException e) { |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | /// Maps the specified key to the specified value. If the key already exists, |
| 454 | /// the old value is replaced. The key and value cannot be `null`. |
Callers
nothing calls this directly
Tested by
no test coverage detected