File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
projects/client/Apigen/src/apigen Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -855,14 +855,14 @@ public void EmitContentHeaderFactory(MethodInfo method) {
855
855
string contentClass = factoryAnnotation . m_contentClass ;
856
856
EmitModelMethodPreamble ( method ) ;
857
857
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
+ }
866
866
EmitLine ( " }" ) ;
867
867
}
868
868
You can’t perform that action at this time.
0 commit comments