From 403d42044fa76d71bbd2f91607ac378d9108d6dc Mon Sep 17 00:00:00 2001 From: Kevin Glynn Date: Fri, 28 Jan 2011 17:17:34 +0100 Subject: [PATCH] fix some broken translations --- CS2JLibrary/NetFramework/System/Collections/ArrayList.xml | 4 ++-- CS2JLibrary/NetFramework/System/Collections/SortedList.xml | 2 +- .../System/Xml/Serialization/IXmlSerializable.java | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CS2JLibrary/NetFramework/System/Collections/ArrayList.xml b/CS2JLibrary/NetFramework/System/Collections/ArrayList.xml index 0db0018..9334d2c 100644 --- a/CS2JLibrary/NetFramework/System/Collections/ArrayList.xml +++ b/CS2JLibrary/NetFramework/System/Collections/ArrayList.xml @@ -111,7 +111,7 @@ ${this}.toArray(new ${TYPEOF_expr_TYPE}[0]) - System.Object + System.Type TYPEOF_expr @@ -172,7 +172,7 @@ new ArrayList(${collection}) - System.ICollection + System.Collections.ICollection collection diff --git a/CS2JLibrary/NetFramework/System/Collections/SortedList.xml b/CS2JLibrary/NetFramework/System/Collections/SortedList.xml index 640a2f6..07a25ac 100644 --- a/CS2JLibrary/NetFramework/System/Collections/SortedList.xml +++ b/CS2JLibrary/NetFramework/System/Collections/SortedList.xml @@ -74,7 +74,7 @@ ${this}.values() - System.ICollection + System.Collections.ICollection Values ${this}.values() ${this}.setValues(${value}) diff --git a/CS2JLibrary/src/RusticiSoftware/System/Xml/Serialization/IXmlSerializable.java b/CS2JLibrary/src/RusticiSoftware/System/Xml/Serialization/IXmlSerializable.java index dbf9d28..e474c9a 100755 --- a/CS2JLibrary/src/RusticiSoftware/System/Xml/Serialization/IXmlSerializable.java +++ b/CS2JLibrary/src/RusticiSoftware/System/Xml/Serialization/IXmlSerializable.java @@ -25,10 +25,10 @@ import RusticiSoftware.System.Xml.XmlWriter; public interface IXmlSerializable { - public Object GetSchema() throws Exception; + public Object GetSchema() throws Throwable; - public void ReadXml(XmlReader reader) throws Exception; + public void ReadXml(XmlReader reader) throws Throwable; - public void WriteXml(XmlWriter writer) throws Exception; + public void WriteXml(XmlWriter writer) throws Throwable; }