We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83144fa commit 48533d1Copy full SHA for 48533d1
src/main/java/org/deepsymmetry/cratedigger/Database.java
@@ -47,8 +47,9 @@ public class Database implements Closeable {
47
*/
48
@API(status = API.Status.STABLE)
49
public Database(File sourceFile) throws IOException {
50
+ // TODO add arity where we can set isExt.
51
this.sourceFile = sourceFile;
- pdb = new RekordboxPdb(new RandomAccessFileKaitaiStream(sourceFile.getAbsolutePath()));
52
+ pdb = new RekordboxPdb(new RandomAccessFileKaitaiStream(sourceFile.getAbsolutePath()), false);
53
54
final SortedMap<String, SortedSet<Long>> mutableTrackTitleIndex = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
55
final SortedMap<Long, SortedSet<Long>> mutableTrackArtistIndex = new TreeMap<>();
0 commit comments