Refactor output writers

This commit is contained in:
AsamK
2021-08-08 17:32:55 +02:00
parent f449a242e4
commit 48b2c7ff8a
42 changed files with 327 additions and 187 deletions

View File

@@ -21,8 +21,10 @@ public class JsonDbusReceiveMessageHandler extends JsonReceiveMessageHandler {
private final String objectPath;
public JsonDbusReceiveMessageHandler(Manager m, DBusConnection conn, final String objectPath) {
super(m);
public JsonDbusReceiveMessageHandler(
Manager m, JsonWriter jsonWriter, DBusConnection conn, final String objectPath
) {
super(m, jsonWriter);
this.conn = conn;
this.objectPath = objectPath;
}