From 7c96751bb00a11492a3e50d0368c25446e2aa160 Mon Sep 17 00:00:00 2001 From: Arseniy Borisov Date: Fri, 11 Nov 2016 18:51:32 +0300 Subject: [PATCH] fix static for docs --- .../java/ru/touchin/templates/DeviceUtils.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/ru/touchin/templates/DeviceUtils.java b/src/main/java/ru/touchin/templates/DeviceUtils.java index e56c7f7..33d228b 100644 --- a/src/main/java/ru/touchin/templates/DeviceUtils.java +++ b/src/main/java/ru/touchin/templates/DeviceUtils.java @@ -139,27 +139,27 @@ public final class DeviceUtils { } /** - * Available network types + * Available network types. */ public enum NetworkType { /** - * Mobile 2G network + * Mobile 2G network. */ MOBILE_2G("2g"), /** - * Mobile 3G network + * Mobile 3G network. */ MOBILE_3G("3g"), /** - * Mobile LTE network + * Mobile LTE network. */ MOBILE_LTE("lte"), /** - * Wi-Fi network + * Wi-Fi network. */ WI_FI("Wi-Fi"), /** - * No network + * No network. */ NONE("none"); @@ -171,7 +171,7 @@ public final class DeviceUtils { } /** - * @return Network type readable name + * @return Network type readable name. */ @NonNull public String getName() {