# HG changeset patch # User ihse # Date 1519681093 -3600 # Node ID 4f96cf952e71cb8a127334494faf28880c26181b # Parent ed9ff662b1e0e3534f4d6c63d81a3b9a98ba1d45 8198658: Docs still point to JDK 9 docs Reviewed-by: tbell, darcy diff -r ed9ff662b1e0 -r 4f96cf952e71 make/Docs.gmk --- a/make/Docs.gmk Tue Feb 20 17:01:18 2018 +0000 +++ b/make/Docs.gmk Mon Feb 26 22:38:13 2018 +0100 @@ -1,4 +1,4 @@ -# Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 1997, 2018, 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 @@ -61,7 +61,7 @@ $(SUPPORT_OUTPUTDIR)/rmic/* $(TOPDIR)/src/*/share/doc/stub) # URLs -JAVADOC_BASE_URL := http://www.oracle.com/pls/topic/lookup?ctx=javase9&id=homepage +JAVADOC_BASE_URL := http://www.oracle.com/pls/topic/lookup?ctx=javase10&id=homepage BUG_SUBMIT_URL := http://bugreport.java.com/bugreport/ COPYRIGHT_URL := {@docroot}/../legal/copyright.html LICENSE_URL := http://www.oracle.com/technetwork/java/javase/terms/license/java10speclicense.html diff -r ed9ff662b1e0 -r 4f96cf952e71 make/jdk/src/classes/build/tools/taglet/ExtLink.java --- a/make/jdk/src/classes/build/tools/taglet/ExtLink.java Tue Feb 20 17:01:18 2018 +0000 +++ b/make/jdk/src/classes/build/tools/taglet/ExtLink.java Mon Feb 26 22:38:13 2018 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2017, 2018, 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 @@ -49,14 +49,14 @@ * will produce the following html *

* {@code - * Please see a spectacular sight. + * Please see a spectacular sight. * } */ public class ExtLink implements Taglet { static final String TAG_NAME = "extLink"; - static final String URL = "https://www.oracle.com/pls/topic/lookup?ctx=javase9&id="; + static final String URL = "https://www.oracle.com/pls/topic/lookup?ctx=javase10&id="; static final Pattern TAG_PATTERN = Pattern.compile("(?s)(\\s*)(?\\w+)(\\s+)(?.*)$");