File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
test/jdk/java/util/jar/Manifest Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
37
37
38
38
/**
39
39
* @test
40
- * @bug 8066619
40
+ * @bug 8066619 8351567
41
41
* @run testng ValueUtf8Coding
42
42
* @summary Tests encoding and decoding manifest header values to and from
43
43
* UTF-8 with the complete Unicode character set.
@@ -201,10 +201,6 @@ static Manifest writeAndRead(Manifest mf) throws IOException {
201
201
mf .write (out );
202
202
byte [] mfBytes = out .toByteArray ();
203
203
204
- System .out .println ("-" .repeat (72 ));
205
- System .out .print (new String (mfBytes , UTF_8 ));
206
- System .out .println ("-" .repeat (72 ));
207
-
208
204
ByteArrayInputStream in = new ByteArrayInputStream (mfBytes );
209
205
return new Manifest (in );
210
206
}
You can’t perform that action at this time.
0 commit comments