Archiviert
13
0

Temporarily restore Java 6 compatibility

3.6.5 will be the last ProtocolLib release supporting Java 6
Dieser Commit ist enthalten in:
Dan Mulloy 2015-11-30 19:03:32 -05:00
Ursprung 125834205a
Commit 5a5cd77bac

Datei anzeigen

@ -16,6 +16,7 @@
*/
package com.comphenix.protocol.utility;
import java.io.Closeable;
import java.util.ArrayList;
import java.util.List;
@ -23,30 +24,31 @@ import java.util.List;
* @author dmulloy2
*/
public class Closer implements AutoCloseable {
private final List<AutoCloseable> list;
// TODO Switch to AutoCloseable w/ Java 7
public class Closer implements Closeable {
private final List<Closeable> list;
private Closer() {
this.list = new ArrayList<AutoCloseable>();
this.list = new ArrayList<Closeable>();
}
public static Closer create() {
return new Closer();
}
public <C extends AutoCloseable> C register(C close) {
public <C extends Closeable> C register(C close) {
list.add(close);
return close;
}
@Override
public void close() {
for (AutoCloseable close : list) {
for (Closeable close : list) {
closeQuietly(close);
}
}
public static void closeQuietly(AutoCloseable close) {
public static void closeQuietly(Closeable close) {
try {
close.close();
} catch (Throwable ex) { }