(byte[] data)
| 11 | } |
| 12 | |
| 13 | public static DataSource fromData(byte[] data) { |
| 14 | return fromData(data, 0, data.length); |
| 15 | } |
| 16 | |
| 17 | public static DataSource fromData(byte[] data, int start, int size) { |
| 18 | return new ByteArrayDataSource(data, start, size); |
no outgoing calls
no test coverage detected