diff options
-rw-r--r-- | apishim/29/com/android/networkstack/apishim/api29/NetworkShimImpl.java | 2 | ||||
-rw-r--r-- | apishim/common/com/android/networkstack/apishim/NetworkShim.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apishim/29/com/android/networkstack/apishim/api29/NetworkShimImpl.java b/apishim/29/com/android/networkstack/apishim/api29/NetworkShimImpl.java index 642cc90..54b2be8 100644 --- a/apishim/29/com/android/networkstack/apishim/api29/NetworkShimImpl.java +++ b/apishim/29/com/android/networkstack/apishim/api29/NetworkShimImpl.java @@ -45,7 +45,7 @@ public class NetworkShimImpl implements NetworkShim { /** * Get the netId of the network. - * Throw UnsupportedApiLevelException if API is not available in this API level. + * @throws UnsupportedApiLevelException if API is not available in this API level. */ @Override public int getNetId() throws UnsupportedApiLevelException { diff --git a/apishim/common/com/android/networkstack/apishim/NetworkShim.java b/apishim/common/com/android/networkstack/apishim/NetworkShim.java index 4cdde7f..fcc66be 100644 --- a/apishim/common/com/android/networkstack/apishim/NetworkShim.java +++ b/apishim/common/com/android/networkstack/apishim/NetworkShim.java @@ -28,7 +28,7 @@ public interface NetworkShim { /** * @see android.net.Network.netId. * - * Throw UnsupportedApiLevelException if API is not available in the API level. + * @throws UnsupportedApiLevelException if API is not available in the API level. */ int getNetId() throws UnsupportedApiLevelException; } |