summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Greenwalt <robdroid@android.com>2010-01-13 11:29:03 -0800
committerRobert Greenwalt <robdroid@android.com>2010-01-13 11:47:50 -0800
commit1bc3c3775b7b2cbaec50cd377db437f284478de0 (patch)
tree9ad141ee03a34af62f89b6be6f0675cd3f0a2ed3
parent5a2ade33fa21dc866a52005c1bbdb8ba7d768ae9 (diff)
downloadframeworks_base-1bc3c3775b7b2cbaec50cd377db437f284478de0.zip
frameworks_base-1bc3c3775b7b2cbaec50cd377db437f284478de0.tar.gz
frameworks_base-1bc3c3775b7b2cbaec50cd377db437f284478de0.tar.bz2
Fix Javadoc errors so the sdk can build.
I unhid some API in a previous install, triggering javadoc processing on their buggy comments. Fixing build.
-rw-r--r--core/java/android/net/ConnectivityManager.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/net/ConnectivityManager.java b/core/java/android/net/ConnectivityManager.java
index a70866d..30799ec 100644
--- a/core/java/android/net/ConnectivityManager.java
+++ b/core/java/android/net/ConnectivityManager.java
@@ -129,14 +129,14 @@ public class ConnectivityManager
public static final int TYPE_WIFI = 1;
/**
* An MMS-specific Mobile data connection. This connection may be the
- * same as {@link #TYPEMOBILE} but it may be different. This is used
+ * same as {@link #TYPE_MOBILE} but it may be different. This is used
* by applications needing to talk to the carrier's Multimedia Messaging
* Service servers. It may coexist with default data connections.
*/
public static final int TYPE_MOBILE_MMS = 2;
/**
* A SUPL-specific Mobile data connection. This connection may be the
- * same as {@link #TYPEMOBILE} but it may be different. This is used
+ * same as {@link #TYPE_MOBILE} but it may be different. This is used
* by applications needing to talk to the carrier's Secure User Plane
* Location servers for help locating the device. It may coexist with
* default data connections.
@@ -144,7 +144,7 @@ public class ConnectivityManager
public static final int TYPE_MOBILE_SUPL = 3;
/**
* A DUN-specific Mobile data connection. This connection may be the
- * same as {@link #TYPEMOBILE} but it may be different. This is used
+ * same as {@link #TYPE_MOBILE} but it may be different. This is used
* by applicaitons performing a Dial Up Networking bridge so that
* the carrier is aware of DUN traffic. It may coexist with default data
* connections.
@@ -152,7 +152,7 @@ public class ConnectivityManager
public static final int TYPE_MOBILE_DUN = 4;
/**
* A High Priority Mobile data connection. This connection is typically
- * the same as {@link #TYPEMOBILE} but the routing setup is different.
+ * the same as {@link #TYPE_MOBILE} but the routing setup is different.
* Only requesting processes will have access to the Mobile DNS servers
* and only IP's explicitly requested via {@link #requestRouteToHost}
* will route over this interface if a default route exists.