[gnome-maps] Small cleanup



commit 1228ac6345f006e414dd8d05f65a170a208c592c
Author: Mattias Bengtsson <mattias jc bengtsson gmail com>
Date:   Wed Apr 24 23:32:39 2013 +0200

    Small cleanup
    
    Add a missing semicolon and remove a trailing comma.
    This is probably not necessary in a pure gjs world but it's considered good form.

 src/mapView.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/mapView.js b/src/mapView.js
index 22858df..0841689 100644
--- a/src/mapView.js
+++ b/src/mapView.js
@@ -47,7 +47,7 @@ const MapType = {
    AERIAL: Champlain.MAP_SOURCE_OSM_AERIAL_MAP,
    CYCLING: Champlain.MAP_SOURCE_OSM_CYCLE_MAP,
    TRANSIT: Champlain.MAP_SOURCE_OSM_TRANSPORT_MAP
-}
+};
 
 const MapView = new Lang.Class({
     Name: 'MapView',
@@ -207,6 +207,6 @@ const MapView = new Lang.Class({
 
     _onViewMoved: function() {
         this.emit('view-moved');
-    },
+    }
 });
 Signals.addSignalMethods(MapView.prototype);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]