commit d503711584c46e8da827b4be8dbd0d89dae54482 Author: Garrett Malmquist Date: Tue Feb 2 16:37:28 2016 -0500 Shade entries that come after a misnamed class. A developer noticed that pants's shading was omitting some shaded classes from a shaded hadoop fatjar, seemingly arbitrarily. After much investigation, he discovered that jarjar was simply skipping shading for all entries that followed a single misnamed class, and the fatjar included `1.0/...` entries that were being omitted. The fix is extremely simple, just moving a single line of code. Testing done: Added a couple test-cases to BadPackagesTest, confirmed that they work with this change, and break without it. src/main/java/org/pantsbuild/jarjar/util/StandaloneJarProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)