Misc small changes for code quality.

This commit is contained in:
Robin 2016-08-31 22:30:00 +02:00
parent ada50c429a
commit 4dd67df1dd
8 changed files with 17 additions and 17 deletions

View file

@ -62,9 +62,8 @@ namespace GreenshotPlugin.Core {
int index = 0;
IDictionary<string, object> value = ParseValue(charArray, ref index, ref success) as IDictionary<string, object>;
return value;
} else {
return null;
}
return null;
}
protected static IDictionary<string, object> ParseObject(char[] json, ref int index, ref bool success) {