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

add a close method

This commit is contained in:
Kevin Glynn 2011-01-31 16:28:32 +01:00
parent 1aeca0f563
commit b4bd3cf697

View File

@ -2,4 +2,6 @@ package RusticiSoftware.System;
public interface IDisposable {
void Dispose() throws Throwable;
void close() throws Throwable;
}