hypfvieh / dbus-java

Improved version of java DBus library provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/)
https://hypfvieh.github.io/dbus-java/
MIT License
185 stars 73 forks source link

InterfaceCodeGenerator doesn't use --outputDir argument correctly #51

Closed sshort closed 5 years ago

sshort commented 5 years ago

It is setting the outputDir variable to "--outputDir":

outputDir = args[i++];

should be

outputDir = args[++i];

or equivalent.