aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorLanchon <lanchon@gmail.com>2018-06-14 08:48:58 -0300
committerBen Gruver <jesusfreke@jesusfreke.com>2018-06-14 15:13:47 -0700
commit239b64ba003accffd1b0cf7c1c58d35435f5e94a (patch)
tree9eb16c1758aa1e82ba783a6cba748c78d5b8bf68 /util
parent2fcdad20784ba3967733c2a91368c0c4d10d34d2 (diff)
downloadsmali-239b64ba003accffd1b0cf7c1c58d35435f5e94a.tar.gz
Fix accidental dependencies on JCommander outside of dexlib2
Diffstat (limited to 'util')
-rw-r--r--util/src/main/java/org/jf/util/jcommander/HelpFormatter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/main/java/org/jf/util/jcommander/HelpFormatter.java b/util/src/main/java/org/jf/util/jcommander/HelpFormatter.java
index e807d5fe..662167eb 100644
--- a/util/src/main/java/org/jf/util/jcommander/HelpFormatter.java
+++ b/util/src/main/java/org/jf/util/jcommander/HelpFormatter.java
@@ -34,9 +34,9 @@ package org.jf.util.jcommander;
import com.beust.jcommander.JCommander;
import com.beust.jcommander.ParameterDescription;
import com.beust.jcommander.Parameters;
-import com.beust.jcommander.internal.Lists;
import com.google.common.base.Joiner;
import com.google.common.collect.Iterables;
+import com.google.common.collect.Lists;
import org.jf.util.WrappedIndentingWriter;
import javax.annotation.Nonnull;