From 7b27d0ca5a1db9137df16c6c67fd47085fbd6890 Mon Sep 17 00:00:00 2001 From: Lanchon Date: Sat, 23 Sep 2017 08:56:15 -0300 Subject: [PATCH] Cosmetic --- src/main/java/lanchon/multidexlib2/DexIO.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/lanchon/multidexlib2/DexIO.java b/src/main/java/lanchon/multidexlib2/DexIO.java index 87f7aa6..6d09cc2 100644 --- a/src/main/java/lanchon/multidexlib2/DexIO.java +++ b/src/main/java/lanchon/multidexlib2/DexIO.java @@ -140,7 +140,7 @@ public class DexIO { false; if (overflow) { if (fileClassCount <= minMainDexClassCount) throw new DexPoolOverflowException( - "Dex pool overflowed while writing type " + (fileClassCount) + + "Dex pool overflowed while writing type " + fileClassCount + " of " + minMainDexClassCount); if (fileClassCount == 1) throw new DexPoolOverflowException( "Type too big for dex pool: " + currentClass.getType());