Skip to content

Commit 45e438f

Browse files
committed
8339845: Update color.org and wapforum.org links to use HTTPS instead of HTTP
Reviewed-by: prr, honkar, aivanov
1 parent 4ff17c1 commit 45e438f

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

src/java.desktop/share/classes/java/awt/color/ICC_ColorSpace.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, 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
@@ -48,7 +48,7 @@
4848
* {@code ColorSpace} class. This representation of device independent and
4949
* device dependent color spaces is based on the International Color Consortium
5050
* Specification ICC.1:2001-12, File Format for Color Profiles (see
51-
* <a href="http://www.color.org">http://www.color.org</a>).
51+
* <a href="https://www.color.org">https://www.color.org</a>).
5252
* <p>
5353
* Typically, a {@code Color} or {@code ColorModel} would be associated with an
5454
* ICC Profile which is either an input, display, or output profile (see the ICC

src/java.desktop/share/classes/java/awt/color/ICC_Profile.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, 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
@@ -64,7 +64,7 @@
6464
* A representation of color profile data for device independent and device
6565
* dependent color spaces based on the International Color Consortium
6666
* Specification ICC.1:2001-12, File Format for Color Profiles, (see
67-
* <a href="http://www.color.org"> http://www.color.org</a>).
67+
* <a href="https://www.color.org"> https://www.color.org</a>).
6868
* <p>
6969
* An {@code ICC_ColorSpace} object can be constructed from an appropriate
7070
* {@code ICC_Profile}. Typically, an {@code ICC_ColorSpace} would be associated

src/java.desktop/share/classes/java/awt/image/ColorConvertOp.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ private int getRenderingIntent (ICC_Profile profile) {
690690
* shall be set to zero. Thus, we are ignoring two most significant
691691
* bytes here.
692692
*
693-
* See http://www.color.org/ICC1v42_2006-05.pdf, section 7.2.15.
693+
* See https://www.color.org/ICC1v42_2006-05.pdf, section 7.2.15.
694694
*/
695695
return ((header[index+2] & 0xff) << 8) |
696696
(header[index+3] & 0xff);

src/java.desktop/share/classes/javax/imageio/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2024, 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
@@ -101,7 +101,7 @@
101101
* <!-- WBMP plugin -->
102102
* <tr>
103103
* <th scope="row">
104-
* <a href="http://www.wapforum.org/what/technical/SPEC-WAESpec-19990524.pdf">
104+
* <a href="https://www.wapforum.org/what/technical/SPEC-WAESpec-19990524.pdf">
105105
* WBMP</a>
106106
* <td>yes
107107
* <td>yes

src/java.desktop/share/classes/javax/imageio/plugins/tiff/BaselineTIFFTagSet.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2024, 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
@@ -1008,7 +1008,7 @@ public final class BaselineTIFFTagSet extends TIFFTagSet {
10081008
/**
10091009
* Constant specifying the "ICC Profile" tag.
10101010
*
1011-
* @see <a href="http://www.color.org/ICC1V42.pdf">ICC Specification, section B.4: Embedding ICC profiles in TIFF files</a>
1011+
* @see <a href="https://www.color.org/ICC1V42.pdf">ICC Specification, section B.4: Embedding ICC profiles in TIFF files</a>
10121012
*/
10131013
public static final int TAG_ICC_PROFILE = 34675;
10141014

0 commit comments

Comments
 (0)