Method
copyStorage
( XStorage xSourceStorage, XStorage xDestStorage )
Source from the content-addressed store, hash-verified
| 550 | } |
| 551 | |
| 552 | public boolean copyStorage( XStorage xSourceStorage, XStorage xDestStorage ) |
| 553 | { |
| 554 | // copy xSourceStorage to xDestStorage |
| 555 | try |
| 556 | { |
| 557 | xSourceStorage.copyToStorage( xDestStorage ); |
| 558 | } |
| 559 | catch( Exception e ) |
| 560 | { |
| 561 | Error( "Storage copying failed, exception: " + e ); |
| 562 | return false; |
| 563 | } |
| 564 | |
| 565 | return true; |
| 566 | } |
| 567 | |
| 568 | public boolean commitStorage( XStorage xStorage ) |
| 569 | { |
Tested by
no test coverage detected