Skip to content

Commit 407a9a9

Browse files
committed
[PluginCore] - More work done judwhite#3.
1 parent 16fd909 commit 407a9a9

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

IdSharp.Tagging/ID3v1/ID3v1Tag.cs

+3-11
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,7 @@ private static string GetString(byte[] byteArray)
358358
break;
359359
}
360360

361-
string returnValue = ByteUtils.ISO88591.GetString(byteArray, 0, maxLength).TrimEnd('\0').TrimEnd(' ');
362-
return returnValue;
361+
return ByteUtils.ISO88591.GetString(byteArray, 0, maxLength).TrimEnd('\0').TrimEnd(' ');
363362
}
364363

365364
/// <summary>
@@ -373,19 +372,12 @@ private static string GetTrimmedString(string value, int maxLength)
373372
return null;
374373

375374
value = value.TrimEnd('\0').Trim();
376-
377-
if (value.Length > maxLength)
378-
return value.Substring(0, maxLength).Trim();
379-
else
380-
return value;
375+
return (value.Length > maxLength) ? value.Substring(0, maxLength).TrimEnd() : value;
381376
}
382377

383378
private static byte[] SafeGetBytes(string value)
384379
{
385-
if (value == null)
386-
return new byte[0];
387-
else
388-
return ByteUtils.ISO88591.GetBytes(value);
380+
return (value == null) ? new byte[0] : ByteUtils.ISO88591.GetBytes(value);
389381
}
390382
}
391383
}

0 commit comments

Comments
 (0)