Skip to content
Snippets Groups Projects
Commit 2d2d0877 authored by Mark Wielaard's avatar Mark Wielaard Committed by Mark Wielaard
Browse files

FileInputStream.java (finalize): Don't explicitly finalize FileDescriptor.

        * java/io/FileInputStream.java (finalize): Don't explicitly
        finalize FileDescriptor.

From-SVN: r60863
parent 2eb1ea83
No related branches found
No related tags found
No related merge requests found
2003-01-03 Mark Wielaard <mark@klomp.org>
* java/io/FileInputStream.java (finalize): Don't explicitly
finalize FileDescriptor.
2003-01-03 Jeff Sturm <jsturm@one-point.com>
* configure.host (sparc*-*): Enable bytecode interpreter.
......
/* Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation
/* Copyright (C) 1998, 1999, 2001, 2002, 2003 Free Software Foundation
This file is part of libgcj.
......@@ -61,8 +61,8 @@ public class FileInputStream extends InputStream
protected void finalize() throws IOException
{
if (fd != null)
fd.finalize();
// We don't actually need this, but we include it because it is
// mentioned in the JCL.
}
public final FileDescriptor getFD() throws IOException
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment