summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Robin Lee <rgl@google.com> 2015-07-29 17:25:06 +0100
committer Robin Lee <rgl@google.com> 2015-07-29 17:25:06 +0100
commit1472c92128e01d38aa47915512eadb3da3d1c08d (patch)
treedfa7dd8305c47b4329c2fc2d89dbddf761203723
parent2e6eb521bca297e6dd6581d3fbecd9df02b7375c (diff)
Fix funky javadoc
Using @link for the first word of a @throws line is redundant and generates strange HTML where the row appears twice. See for example: http://developer.android.com/reference/android/net/VpnService.Builder.html#addAllowedApplication%28java.lang.String%29 Change-Id: I9c0bbe9156d292eb6f0e2e2ccb6dbcfef95bc312
-rw-r--r--core/java/android/net/VpnService.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/net/VpnService.java b/core/java/android/net/VpnService.java
index 2bb48b33f385..c6daa15e3d62 100644
--- a/core/java/android/net/VpnService.java
+++ b/core/java/android/net/VpnService.java
@@ -240,7 +240,7 @@ public class VpnService extends Service {
* Adding an address implicitly allows traffic from that address family (i.e., IPv4 or IPv6) to
* be routed over the VPN. @see Builder#allowFamily
*
- * @throws {@link IllegalArgumentException} if the address is invalid.
+ * @throws IllegalArgumentException if the address is invalid.
*
* @param address The IP address (IPv4 or IPv6) to assign to the VPN interface.
* @param prefixLength The prefix length of the address.
@@ -271,7 +271,7 @@ public class VpnService extends Service {
* family from being routed. In other words, once an address family has been allowed, it stays
* allowed for the rest of the VPN's session. @see Builder#allowFamily
*
- * @throws {@link IllegalArgumentException} if the address is invalid.
+ * @throws IllegalArgumentException if the address is invalid.
*
* @param address The IP address (IPv4 or IPv6) to assign to the VPN interface.
* @param prefixLength The prefix length of the address.
@@ -624,7 +624,7 @@ public class VpnService extends Service {
* {@code packageName} must be the canonical name of a currently installed application.
* {@link PackageManager.NameNotFoundException} is thrown if there's no such application.
*
- * @throws {@link PackageManager.NameNotFoundException} If the application isn't installed.
+ * @throws PackageManager.NameNotFoundException If the application isn't installed.
*
* @param packageName The full name (e.g.: "com.google.apps.contacts") of an application.
*
@@ -656,7 +656,7 @@ public class VpnService extends Service {
* {@code packageName} must be the canonical name of a currently installed application.
* {@link PackageManager.NameNotFoundException} is thrown if there's no such application.
*
- * @throws {@link PackageManager.NameNotFoundException} If the application isn't installed.
+ * @throws PackageManager.NameNotFoundException If the application isn't installed.
*
* @param packageName The full name (e.g.: "com.google.apps.contacts") of an application.
*