MCPcopy Create free account
hub / github.com/L-JINBIN/ApkDataMultiplexing / from

Method from

src/bin/io/RandomAccessFactory.java:11–13  ·  view source on GitHub ↗
(RandomAccessData randomAccessData)

Source from the content-addressed store, hash-verified

9public class RandomAccessFactory {
10
11 public static RandomAccessFile from(RandomAccessData randomAccessData) {
12 return new BufferedRandomAccessFile(randomAccessData);
13 }
14
15 public static RandomAccessFile from(File file, String mode) throws IOException {
16 return new BufferedRandomAccessFile(new RandomAccessDataImpl(file, mode));

Callers 3

ZipFileMethod · 0.95
ZipMakerMethod · 0.95
signMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected