Skip to content

Commit 3c7b1d4

Browse files
author
Simon MacMullen
committed
Fix indenting.
1 parent ba0ba5e commit 3c7b1d4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

projects/client/Apigen/src/apigen/Apigen.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -855,14 +855,14 @@ public void EmitContentHeaderFactory(MethodInfo method) {
855855
string contentClass = factoryAnnotation.m_contentClass;
856856
EmitModelMethodPreamble(method);
857857
EmitLine(" {");
858-
if (Attribute(method, typeof(AmqpUnsupportedAttribute)) != null)
859-
{
860-
EmitLine(String.Format(" throw new UnsupportedMethodException(\"" + method.Name + "\");"));
861-
}
862-
else
863-
{
864-
EmitLine(" return new " + MangleClass(contentClass) + "Properties();");
865-
}
858+
if (Attribute(method, typeof(AmqpUnsupportedAttribute)) != null)
859+
{
860+
EmitLine(String.Format(" throw new UnsupportedMethodException(\"" + method.Name + "\");"));
861+
}
862+
else
863+
{
864+
EmitLine(" return new " + MangleClass(contentClass) + "Properties();");
865+
}
866866
EmitLine(" }");
867867
}
868868

0 commit comments

Comments
 (0)