mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8174270: Consolidate ICU sources in one location
Reviewed-by: srl, joehw
This commit is contained in:
parent
91bb1d3700
commit
1b24cf800f
57 changed files with 251 additions and 178 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -29,9 +29,9 @@ import java.io.IOException;
|
|||
import java.security.AccessController;
|
||||
import java.security.PrivilegedAction;
|
||||
|
||||
import sun.net.idn.StringPrep;
|
||||
import sun.net.idn.Punycode;
|
||||
import sun.text.normalizer.UCharacterIterator;
|
||||
import jdk.internal.icu.impl.Punycode;
|
||||
import jdk.internal.icu.text.StringPrep;
|
||||
import jdk.internal.icu.text.UCharacterIterator;
|
||||
|
||||
/**
|
||||
* Provides methods to convert internationalized domain names (IDNs) between
|
||||
|
@ -226,7 +226,7 @@ public final class IDN {
|
|||
InputStream stream = null;
|
||||
|
||||
try {
|
||||
final String IDN_PROFILE = "uidna.spp";
|
||||
final String IDN_PROFILE = "/sun/net/idn/uidna.spp";
|
||||
if (System.getSecurityManager() != null) {
|
||||
stream = AccessController.doPrivileged(new PrivilegedAction<>() {
|
||||
public InputStream run() {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -35,7 +35,7 @@
|
|||
|
||||
package java.text;
|
||||
|
||||
import sun.text.bidi.BidiBase;
|
||||
import jdk.internal.icu.text.BidiBase;
|
||||
|
||||
/**
|
||||
* This class implements the Unicode Bidirectional Algorithm.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -41,7 +41,7 @@ package java.text;
|
|||
import java.lang.Character;
|
||||
import java.util.Vector;
|
||||
import sun.text.CollatorUtilities;
|
||||
import sun.text.normalizer.NormalizerBase;
|
||||
import jdk.internal.icu.text.NormalizerBase;
|
||||
|
||||
/**
|
||||
* The {@code CollationElementIterator} class is used as an iterator
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -37,7 +37,7 @@
|
|||
|
||||
package java.text;
|
||||
|
||||
import sun.text.normalizer.NormalizerBase;
|
||||
import jdk.internal.icu.text.NormalizerBase;
|
||||
|
||||
/**
|
||||
* This class provides the method {@code normalize} which transforms Unicode
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -42,8 +42,7 @@ import java.util.Vector;
|
|||
import sun.text.UCompactIntArray;
|
||||
import sun.text.IntHashtable;
|
||||
import sun.text.ComposedCharIter;
|
||||
import sun.text.CollatorUtilities;
|
||||
import sun.text.normalizer.NormalizerImpl;
|
||||
import jdk.internal.icu.impl.NormalizerImpl;
|
||||
|
||||
/**
|
||||
* This class contains all the code to parse a RuleBasedCollator pattern
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue