| 77 | } |
| 78 | |
| 79 | public static class reader { |
| 80 | private boolean success; |
| 81 | private byte[] data; |
| 82 | |
| 83 | public reader(boolean success, byte[] data) { |
| 84 | this.success = success; |
| 85 | this.data = data; |
| 86 | } |
| 87 | |
| 88 | public boolean isSuccess() { |
| 89 | return success; |
| 90 | } |
| 91 | |
| 92 | public byte[] getData() { |
| 93 | return data; |
| 94 | } |
| 95 | } |
| 96 | } |
nothing calls this directly
no outgoing calls
no test coverage detected