(String remotePath)
| 74 | } |
| 75 | |
| 76 | public static List<RefObjValue> getRemoteRefs(String remotePath) { |
| 77 | final String currentDir = FileUtil.getCurrentDir(); |
| 78 | FileUtil.setRootPathContext(remotePath); |
| 79 | |
| 80 | final List<RefObjValue> remoteRefs = getRemoteRefs(remotePath, ConstantVal.EMPTY); |
| 81 | |
| 82 | FileUtil.setRootPathContext(currentDir); |
| 83 | |
| 84 | return remoteRefs; |
| 85 | } |
| 86 | |
| 87 | public static List<RefObjValue> getRemoteRefs(String remotePath, String prefix) { |
| 88 |
no test coverage detected