From: Kevin Wasserman Date: Wed, 6 Nov 2013 14:36:28 +0000 (-0500) Subject: Fix formatting X-Git-Tag: 0.7.1~31 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=moonshot-ui.git;a=commitdiff_plain;h=72cea78f18929db00c8335b448a3c825d15edd75 Fix formatting --- diff --git a/src/moonshot-local-flat-file-store.vala b/src/moonshot-local-flat-file-store.vala index c2d39ab..51d3986 100644 --- a/src/moonshot-local-flat-file-store.vala +++ b/src/moonshot-local-flat-file-store.vala @@ -17,22 +17,22 @@ public class LocalFlatFileStore : Object, IIdentityCardStore { if (idcard.display_name == card.display_name) return idcard; return null; - } + } - public void remove_card(IdCard card) { + public void remove_card(IdCard card) { id_card_list.remove(card); store_id_cards (); } - public LinkedList get_card_list() { - return id_card_list; - } + public LinkedList get_card_list() { + return id_card_list; + } - public IIdentityCardStore.StoreType get_store_type() { - return IIdentityCardStore.StoreType.FLAT_FILE; - } + public IIdentityCardStore.StoreType get_store_type() { + return IIdentityCardStore.StoreType.FLAT_FILE; + } - private void load_id_cards() { + private void load_id_cards() { id_card_list.clear(); var key_file = new KeyFile (); var path = get_data_dir (); @@ -88,7 +88,7 @@ public class LocalFlatFileStore : Object, IIdentityCardStore { stdout.printf ("Error: %s\n", e.message); } } - } + } private string get_data_dir() { string path;