We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbb97a7 commit 829c0c0Copy full SHA for 829c0c0
1 file changed
src/main/java/org/javacs/FileStore.java
@@ -271,9 +271,6 @@ public static String contents(Path file) {
271
}
272
273
static InputStream inputStream(Path file) {
274
- var uri = file.toUri();
275
- file = Paths.get(uri);
276
-
277
if (activeDocuments.containsKey(file)) {
278
var string = activeDocuments.get(file).content;
279
var bytes = string.getBytes();
@@ -291,9 +288,6 @@ static InputStream inputStream(Path file) {
291
288
292
289
293
290
static BufferedReader bufferedReader(Path file) {
294
295
296
297
298
299
return new BufferedReader(new StringReader(string));
0 commit comments