private static string FindErrors(string code)
		{
			var tree = CSharpSyntaxTree.ParseText(code);
			var errors = new RedundantIfStyleValidator().FindError(tree);
			return errors;
		}
        private static string FindErrors(string code)
        {
            var errors = new RedundantIfStyleValidator().FindError(code);

            return(errors);
        }
		private static string FindErrors(string code)
		{
			var errors = new RedundantIfStyleValidator().FindError(code);
			return errors;
		}