From bcce9ea7f036ace6c832cb3f62e817d3e379417f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 3 Aug 2013 17:59:36 +0200 Subject: [PATCH] StyleCop clean RALint --- RALint/RALint.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RALint/RALint.cs b/RALint/RALint.cs index 759b227918..ead78bede1 100644 --- a/RALint/RALint.cs +++ b/RALint/RALint.cs @@ -38,7 +38,7 @@ namespace RALint var options = args.Where(a => a.StartsWith("-")); var mods = args.Where(a => !options.Contains(a)).ToArray(); - var verbose = options.Contains( "-v" ) || options.Contains( "--verbose" ); + var verbose = options.Contains("-v") || options.Contains("--verbose"); // bind some nonfatal error handling into FieldLoader, so we don't just *explode*. ObjectCreator.MissingTypeAction = s => EmitError("Missing Type: {0}".F(s)); @@ -61,7 +61,7 @@ namespace RALint customPass.Run(EmitError, EmitWarning); } - catch(Exception e) + catch (Exception e) { EmitError("Failed with exception: {0}".F(e)); }