1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

Don't force IDisposable to implement close()

This commit is contained in:
Kevin Glynn 2011-04-27 13:04:11 +02:00
parent 17fdd8498d
commit 8eec6a60d1

View File

@ -3,5 +3,5 @@ package CS2JNet.System;
public interface IDisposable {
void Dispose() throws Exception;
void close() throws Exception;
//void close() throws Exception;
}