Skip to content

Commit f0e3edc

Browse files
committed
remove extra semi colon
Eclipse has been complaining about it... Change-Id: I39fb4eeab26af883dd2287baf49ec244db453365
1 parent 6113ce3 commit f0e3edc

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)