Skip to content

Commit 5f6def4

Browse files
committed
Fix SummaryJavadoc checkstyle violations
1 parent f0d30e7 commit 5f6def4

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

src/main/java/io/appium/java_client/android/SupportsNetworkStateManagement.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,22 @@
1010
public interface SupportsNetworkStateManagement extends ExecutesMethod {
1111

1212
/**
13-
* Toggles Wifi on and off
13+
* Toggles Wifi on and off.
1414
*/
1515
default void toggleWifi() {
1616
CommandExecutionHelper.execute(this, toggleWifiCommand());
1717
}
1818

1919
/**
20-
* Toggle Airplane mode and this works
21-
* on OS 6.0 and lesser
20+
* Toggle Airplane mode and this works on OS 6.0 and lesser
2221
* and does not work on OS 7.0 and greater
2322
*/
2423
default void toggleAirplaneMode() {
2524
CommandExecutionHelper.execute(this, toggleAirplaneCommand());
2625
}
2726

2827
/**
29-
* Toggle Mobile Data and this works on Emulator
30-
* and rooted device
28+
* Toggle Mobile Data and this works on Emulator and rooted device.
3129
*/
3230
default void toggleData() {
3331
CommandExecutionHelper.execute(this, toggleDataCommand());

0 commit comments

Comments
 (0)