Skip to content

Commit 0591745

Browse files
committedSep 9, 2021
JDK-18+14: Merge branch 'master' into fibers
2 parents c3086a5 + e680503 commit 0591745

File tree

486 files changed

+8694
-4078
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

486 files changed

+8694
-4078
lines changed
 

‎make/jdk/src/classes/build/tools/generatelsrequivmaps/EquivMapsGenerator.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -27,7 +27,6 @@
2727

2828
import java.io.BufferedWriter;
2929
import java.io.IOException;
30-
import java.nio.charset.Charset;
3130
import java.nio.file.Files;
3231
import java.nio.file.Paths;
3332
import java.time.ZoneId;
@@ -79,8 +78,7 @@ private static void readLSRfile(String filename) throws Exception {
7978
String preferred = null;
8079
String prefix = null;
8180

82-
for (String line : Files.readAllLines(Paths.get(filename),
83-
Charset.forName("UTF-8"))) {
81+
for (String line : Files.readAllLines(Paths.get(filename))) {
8482
line = line.toLowerCase(Locale.ROOT);
8583
int index = line.indexOf(' ') + 1;
8684
if (line.startsWith("file-date:")) {

‎src/demo/share/jfc/Font2DTest/Font2DTest.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2021, Oracle and/or its affiliates. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions
@@ -72,6 +72,8 @@
7272
import javax.swing.*;
7373
import javax.swing.event.*;
7474

75+
import static java.nio.charset.StandardCharsets.UTF_16;
76+
7577
/**
7678
* Font2DTest.java
7779
*
@@ -589,7 +591,7 @@ private void readTextFile( String fileName ) {
589591
if (numBytes >= 2 &&
590592
(( byteData[0] == (byte) 0xFF && byteData[1] == (byte) 0xFE ) ||
591593
( byteData[0] == (byte) 0xFE && byteData[1] == (byte) 0xFF )))
592-
fileText = new String( byteData, "UTF-16" );
594+
fileText = new String(byteData, UTF_16);
593595
/// Otherwise, use system default encoding
594596
else
595597
fileText = new String( byteData );
@@ -647,7 +649,7 @@ private void writeCurrentOptions( String fileName ) {
647649
showFontInfoCBMI.getState() + "\n" +
648650
rm.getSelectedItem() + "\n" +
649651
range[0] + "\n" + range[1] + "\n" + curOptions + tFileName);
650-
byte[] toBeWritten = completeOptions.getBytes( "UTF-16" );
652+
byte[] toBeWritten = completeOptions.getBytes(UTF_16);
651653
bos.write( toBeWritten, 0, toBeWritten.length );
652654
bos.close();
653655
}
@@ -712,7 +714,7 @@ private void loadOptions( String fileName ) {
712714
(byteData[0] != (byte) 0xFE || byteData[1] != (byte) 0xFF) )
713715
throw new Exception( "Not a Font2DTest options file" );
714716

715-
String options = new String( byteData, "UTF-16" );
717+
String options = new String(byteData, UTF_16);
716718
StringTokenizer perLine = new StringTokenizer( options, "\n" );
717719
String title = perLine.nextToken();
718720
if ( !title.equals( "Font2DTest Option File" ))

0 commit comments

Comments
 (0)