(String name)
| 47 | int offset = -1; |
| 48 | |
| 49 | public ZipEntry(String name) { |
| 50 | this.name = name; |
| 51 | setTime(System.currentTimeMillis()); |
| 52 | } |
| 53 | |
| 54 | //Method to return name of the file |
| 55 | public String getName() { |
nothing calls this directly
no test coverage detected