From 54acb6c05004b1ca65c492ed88e8ea35e03e427f Mon Sep 17 00:00:00 2001 From: Kevin Glynn Date: Fri, 21 Jan 2011 19:05:56 +0100 Subject: [PATCH] whoops, fix for parameterless constructors --- .../antlr3/src/cs2j/CLR/TranslationTemplate.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/CSharpTranslator/antlr3/src/cs2j/CLR/TranslationTemplate.cs b/CSharpTranslator/antlr3/src/cs2j/CLR/TranslationTemplate.cs index 32146ee..248ab79 100644 --- a/CSharpTranslator/antlr3/src/cs2j/CLR/TranslationTemplate.cs +++ b/CSharpTranslator/antlr3/src/cs2j/CLR/TranslationTemplate.cs @@ -1738,13 +1738,13 @@ namespace RusticiSoftware.Translator.CLR } } } - if (matchingArgs) - { - ResolveResult res = new ResolveResult(); - res.Result = c; - res.ResultType = AppEnv.Search(Uses, TypeName); - return res; - } + } + if (matchingArgs) + { + ResolveResult res = new ResolveResult(); + res.Result = c; + res.ResultType = AppEnv.Search(Uses, TypeName); + return res; } } }