Skip to content

Commit e50158b

Browse files
authored
chore: remove unused field from ProcyonDecompiler.FileOutputWriter (#6324)
1 parent a593863 commit e50158b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

spoon-decompiler/src/main/java/spoon/decompiler/ProcyonDecompiler.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,15 +258,12 @@ private Writer createWriter(TypeDefinition type, DecompilerSettings settings, St
258258
}
259259

260260
final class FileOutputWriter extends OutputStreamWriter {
261-
private final File file;
262-
263261
FileOutputWriter(final File file, final DecompilerSettings settings) throws IOException {
264262
super(
265263
new FileOutputStream(file),
266264
settings.isUnicodeOutputEnabled() ? Charset.forName("UTF-8")
267265
: Charset.defaultCharset()
268266
);
269-
this.file = file;
270267
}
271268
}
272269

0 commit comments

Comments
 (0)