File tree 1 file changed +3
-11
lines changed
1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -358,8 +358,7 @@ private static string GetString(byte[] byteArray)
358
358
break ;
359
359
}
360
360
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 ( ' ' ) ;
363
362
}
364
363
365
364
/// <summary>
@@ -373,19 +372,12 @@ private static string GetTrimmedString(string value, int maxLength)
373
372
return null ;
374
373
375
374
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 ;
381
376
}
382
377
383
378
private static byte [ ] SafeGetBytes ( string value )
384
379
{
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 ) ;
389
381
}
390
382
}
391
383
}
You can’t perform that action at this time.
0 commit comments