(String uri)
| 595 | } |
| 596 | |
| 597 | public static IPersistible doLoad(String uri) throws DDFException { |
| 598 | return doLoad(new PersistenceUri(uri)); |
| 599 | } |
| 600 | |
| 601 | public static IPersistible doLoad(PersistenceUri uri) throws DDFException { |
| 602 | if (uri == null) throw new DDFException("URI cannot be null"); |
nothing calls this directly
no test coverage detected