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 3e41710 commit 1a510c8Copy full SHA for 1a510c8
README.md
@@ -18,9 +18,8 @@ Collection of Java structures and libraries for interacting with the btrfs files
18
19
```java
20
Path streamFile = Paths.get("/path/to/stream.dat");
21
-try (InputStream is = Files.newInputStream(streamFile);
22
- BufferedInputStream bis = new BufferedInputStream(is);
23
- BtrfsStreamReader reader = new BtrfsStreamReader(bis)) {
+try (InputStream is = new BufferedInputStream(Files.newInputStream(streamFile));
+ BtrfsStreamReader reader = new BtrfsStreamReader(is)) {
24
25
while (reader.hasNext()) {
26
BtrfsStreamElement element = reader.next();
0 commit comments