(JsonObject asJsonObject, String file)
| 59 | } |
| 60 | |
| 61 | private void addFile(JsonObject asJsonObject, String file) { |
| 62 | HashObject hashObject = new HashObject(); |
| 63 | hashObject.setFile(new File(file)); |
| 64 | hashObject.setType(ConstantVal.BLOB); |
| 65 | final String objectId = hashObject.call(); |
| 66 | asJsonObject.addProperty(file, objectId); |
| 67 | } |
| 68 | |
| 69 | |
| 70 | private void addDirectory(JsonObject asJsonObject, String file) { |
no test coverage detected