8180486: extLink taglet needs escaped "&"
authorihse
Thu, 18 May 2017 12:00:46 +0200
changeset 45254 0488e2d10296
parent 45253 7d08b205b036
child 45255 fb4fe30c9375
8180486: extLink taglet needs escaped "&" Reviewed-by: dholmes
jdk/make/src/classes/build/tools/taglet/ExtLink.java
--- a/jdk/make/src/classes/build/tools/taglet/ExtLink.java	Thu May 18 09:23:44 2017 +0200
+++ b/jdk/make/src/classes/build/tools/taglet/ExtLink.java	Thu May 18 12:00:46 2017 +0200
@@ -56,7 +56,7 @@
 
     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=javase9&id=";
 
     static final Pattern TAG_PATTERN = Pattern.compile("(\\s*)(?<name>\\w+)(\\s+)(?<desc>.*)");