Skip to content

Commit f1554fc

Browse files
committedMay 11, 2022
8285872: JFR: Remove finalize() methods
Reviewed-by: mgronlun
1 parent faa1aad commit f1554fc

File tree

3 files changed

+0
-28
lines changed

3 files changed

+0
-28
lines changed
 

‎src/jdk.jfr/share/classes/jdk/jfr/internal/ChunkInputStream.java

-7
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,4 @@ public void close() throws IOException {
110110
}
111111
}
112112
}
113-
114-
@Override
115-
@SuppressWarnings("removal")
116-
protected void finalize() throws Throwable {
117-
super.finalize();
118-
close();
119-
}
120113
}

‎src/jdk.jfr/share/classes/jdk/jfr/internal/ChunksChannel.java

-7
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,4 @@ public void close() throws IOException {
135135
public boolean isOpen() {
136136
return channel != null;
137137
}
138-
139-
@Override
140-
@SuppressWarnings("removal")
141-
protected void finalize() throws Throwable {
142-
super.finalize();
143-
close();
144-
}
145138
}

‎src/jdk.jfr/share/classes/jdk/jfr/internal/RepositoryChunk.java

-14
Original file line numberDiff line numberDiff line change
@@ -133,20 +133,6 @@ public synchronized void release() {
133133
}
134134
}
135135

136-
@Override
137-
@SuppressWarnings("removal")
138-
protected void finalize() {
139-
boolean destroy = false;
140-
synchronized (this) {
141-
if (refCount > 0) {
142-
destroy = true;
143-
}
144-
}
145-
if (destroy) {
146-
destroy();
147-
}
148-
}
149-
150136
public long getSize() {
151137
return size;
152138
}

0 commit comments

Comments
 (0)
Please sign in to comment.