(byte[] bytes)
| 34 | } |
| 35 | |
| 36 | @Override |
| 37 | public String encode(byte[] bytes) throws EncodingException { |
| 38 | Assert.notNull(bytes, "byte array argument cannot be null"); |
| 39 | return this.base64.encodeToString(bytes, false); |
| 40 | } |
| 41 | } |
nothing calls this directly
no test coverage detected