From 5ea75499fe3a646d86c536405ed78dab4bcbd3e1 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Thu, 22 Aug 2013 09:40:12 -0400 Subject: [PATCH] objectManager: fix indentation --- js/misc/objectManager.js | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/js/misc/objectManager.js b/js/misc/objectManager.js index f7265fe70..6998dd2e0 100644 --- a/js/misc/objectManager.js +++ b/js/misc/objectManager.js @@ -71,24 +71,24 @@ const ObjectManager = new Lang.Class({ }, _addInterface: function(objectPath, interfaceName, onFinished) { - let info = this._interfaceInfos[interfaceName]; + let info = this._interfaceInfos[interfaceName]; - if (!info) { - if (onFinished) - onFinished(); - return; - } + if (!info) { + if (onFinished) + onFinished(); + return; + } - let proxy = new Gio.DBusProxy({ g_connection: this._connection, - g_name: this._serviceName, - g_object_path: objectPath, - g_interface_name: interfaceName, - g_interface_info: info, - g_flags: Gio.DBusProxyFlags.NONE }); + let proxy = new Gio.DBusProxy({ g_connection: this._connection, + g_name: this._serviceName, + g_object_path: objectPath, + g_interface_name: interfaceName, + g_interface_info: info, + g_flags: Gio.DBusProxyFlags.NONE }); - proxy.init_async(GLib.PRIORITY_DEFAULT, - this._cancellable, - Lang.bind(this, function(initable, result) { + proxy.init_async(GLib.PRIORITY_DEFAULT, + this._cancellable, + Lang.bind(this, function(initable, result) { let error = null; try { initable.init_finish(result);