From b1ca15f69d431d3553aff9aa030e6663a5adb7b0 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Thu, 17 Jun 2010 20:25:01 +0100 Subject: [PATCH] update coding style --- SparkleShare/SparkleShare.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/SparkleShare/SparkleShare.cs b/SparkleShare/SparkleShare.cs index 636e23ea..77d8e6db 100644 --- a/SparkleShare/SparkleShare.cs +++ b/SparkleShare/SparkleShare.cs @@ -25,14 +25,16 @@ namespace SparkleShare { public class SparkleShare { // Short alias for the translations - public static string _ (string s) { + public static string _ (string s) + { return Catalog.GetString (s); } public static SparkleRepo [] Repositories; public static SparkleUI SparkleUI; - public static void Main (string [] args) { + public static void Main (string [] args) + { // Use translations Catalog.Init ("i18n", "locale"); @@ -80,7 +82,8 @@ namespace SparkleShare { } // Prints the help output - public static void ShowHelp () { + public static void ShowHelp () + { Console.WriteLine (_("SparkleShare Copyright (C) 2010 Hylke Bons")); Console.WriteLine (" "); Console.WriteLine (_("This program comes with ABSOLUTELY NO WARRANTY."));