diff options
| author | 2015-01-05 22:20:28 +0000 | |
|---|---|---|
| committer | 2015-01-05 22:20:28 +0000 | |
| commit | 9bd1382f210732f406e497883dc8f4039f8d33d9 (patch) | |
| tree | d5fa803ebe67bd48bba78f61d6f09346190656d5 | |
| parent | b8e51390af6015c1eaff7679546a5a7d2dfa701d (diff) | |
| parent | e5cb6a253afa8faffb85c73779a78c74aead23ae (diff) | |
am e5cb6a25: am bb845152: Merge "pm path needs to return 0 when it succeeds." into lmp-mr1-dev
* commit 'e5cb6a253afa8faffb85c73779a78c74aead23ae':
pm path needs to return 0 when it succeeds.
| -rw-r--r-- | cmds/pm/src/com/android/commands/pm/Pm.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/pm/src/com/android/commands/pm/Pm.java b/cmds/pm/src/com/android/commands/pm/Pm.java index dfe1fce35481..7a01701f8dda 100644 --- a/cmds/pm/src/com/android/commands/pm/Pm.java +++ b/cmds/pm/src/com/android/commands/pm/Pm.java @@ -1670,8 +1670,8 @@ public final class Pm { System.out.print("package:"); System.out.println(splitSourceDir); } - return 0; } + return 0; } } catch (RemoteException e) { System.err.println(e.toString()); |