From 239b64ba003accffd1b0cf7c1c58d35435f5e94a Mon Sep 17 00:00:00 2001 From: Lanchon Date: Thu, 14 Jun 2018 08:48:58 -0300 Subject: [PATCH] Fix accidental dependencies on JCommander outside of dexlib2 --- util/src/main/java/org/jf/util/jcommander/HelpFormatter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;