From b4bd3cf697e0e92a1eb28c0ba192fb97a524e68e Mon Sep 17 00:00:00 2001 From: Kevin Glynn Date: Mon, 31 Jan 2011 16:28:32 +0100 Subject: [PATCH] add a close method --- CS2JLibrary/src/RusticiSoftware/System/IDisposable.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java b/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java index 8c74b1f..9e69d1e 100644 --- a/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java +++ b/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java @@ -2,4 +2,6 @@ package RusticiSoftware.System; public interface IDisposable { void Dispose() throws Throwable; + + void close() throws Throwable; }