File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/test/java/com/upokecenter/test Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -383,13 +383,13 @@ public void TestReadUtf8ToString() {
383383finally {
384384try { if (ms != null )ms .close (); } catch (java .io .IOException ex ) {}
385385}
386- java .io .ByteArrayInputStream ms = null ;
386+ java .io .ByteArrayInputStream ms2 = null ;
387387try {
388- ms = new java .io .ByteArrayInputStream (seq );
388+ ms2 = new java .io .ByteArrayInputStream (seq );
389389
390390 String strret = null ;
391391 try {
392- strret = DataUtilities .ReadUtf8ToString (ms , -1 , true );
392+ strret = DataUtilities .ReadUtf8ToString (ms2 , -1 , true );
393393 } catch (Exception ex ) {
394394 Assert .fail (ex .toString ());
395395 throw new IllegalStateException ("" , ex );
@@ -398,7 +398,7 @@ public void TestReadUtf8ToString() {
398398 Assert .assertEquals ('\ufffd' , strret .charAt (0 ));
399399}
400400finally {
401- try { if (ms != null )ms .close (); } catch (java .io .IOException ex ) {}
401+ try { if (ms2 != null )ms2 .close (); } catch (java .io .IOException ex ) {}
402402}
403403 }
404404 }
You can’t perform that action at this time.
0 commit comments