diff options
author | Matthew Johnson <mjj29@hecate.matthew.ath.cx> | 2008-04-04 09:03:32 +0100 |
---|---|---|
committer | Matthew Johnson <mjj29@hecate.matthew.ath.cx> | 2008-04-04 09:03:32 +0100 |
commit | 323ee7ce4b5caeb97f41581abe5b20427f3df614 (patch) | |
tree | b56b0ff3a614003444219a33fea62dc94cd08633 /org | |
parent | 1c598a1aebc7ec27c0d4d01e033dc938c9886298 (diff) |
+++ b/changelog
+ * Fix CreateInterface (Spotted by Tom Walsh <walshtc -at- gmail -dot- com>)
Diffstat (limited to 'org')
-rw-r--r-- | org/freedesktop/dbus/bin/CreateInterface.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/org/freedesktop/dbus/bin/CreateInterface.java b/org/freedesktop/dbus/bin/CreateInterface.java index 4b778fa..314f992 100644 --- a/org/freedesktop/dbus/bin/CreateInterface.java +++ b/org/freedesktop/dbus/bin/CreateInterface.java @@ -38,6 +38,7 @@ import javax.xml.parsers.ParserConfigurationException; import org.freedesktop.DBus.Introspectable; import org.freedesktop.dbus.DBusConnection; +import org.freedesktop.dbus.Marshalling; import org.freedesktop.dbus.exceptions.DBusException; import org.freedesktop.dbus.exceptions.DBusExecutionException; import org.freedesktop.dbus.types.DBusStructType; @@ -103,7 +104,7 @@ public class CreateInterface { if (null == dbus || "".equals(dbus)) return ""; Vector<Type> v = new Vector<Type>(); - /* UNNECCESSARY?? int c = Marshalling.getJavaType(dbus, v, 1);*/ + int c = Marshalling.getJavaType(dbus, v, 1); Type t = v.get(0); return collapseType(t, imports, structs, container, fullnames); } |