Skip to content

Commit 7fdde0c

Browse files
guang-googleAndroid (Google) Code Review
authored andcommitted
Merge "remove extra semi colon" into jb-dev
2 parents c9ca7f3 + f0e3edc commit 7fdde0c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cmds/svc/src/com/android/commands/svc/UsbCommand.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
package com.android.commands.svc;
1818

19-
import android.content.Context;;
19+
import android.content.Context;
2020
import android.hardware.usb.IUsbManager;
2121
import android.os.RemoteException;
2222
import android.os.ServiceManager;
@@ -27,10 +27,12 @@ public UsbCommand() {
2727
super("usb");
2828
}
2929

30+
@Override
3031
public String shortHelp() {
3132
return "Control Usb state";
3233
}
3334

35+
@Override
3436
public String longHelp() {
3537
return shortHelp() + "\n"
3638
+ "\n"
@@ -40,6 +42,7 @@ public String longHelp() {
4042
+ " Gets the list of currently enabled functions\n";
4143
}
4244

45+
@Override
4346
public void run(String[] args) {
4447
boolean validCommand = false;
4548
if (args.length >= 2) {

0 commit comments

Comments
 (0)