Skip to content

Commit 22f3db3

Browse files
author
Brian Melton
committed
Unused variable cleanup
1 parent 38e8b7b commit 22f3db3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Templates/Android/BaseModel.template.tt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -671,12 +671,13 @@ public {1} {2}{3}{4} {{";
671671
";
672672
foreach (var p in parameters)
673673
{
674-
var propertyType = p.IsCollection ? string.Format("List<{0}>", ParamType(p)) : ParamType(p);
675-
sb.AppendFormat(format,
674+
sb.AppendFormat(
675+
format,
676676
ParamName(p).SplitCamelCase(),
677677
ParamName(p),
678678
ParamType(p),
679-
p.SanitizePropertyName().ToLowerFirstChar());
679+
p.SanitizePropertyName().ToLowerFirstChar()
680+
);
680681
}
681682
return sb.ToString();
682683
}

0 commit comments

Comments
 (0)