add toString() to UPX

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1173715 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-09-21 15:32:21 +00:00
parent 0d2e6a8378
commit 34d7f18db4
1 changed files with 6 additions and 0 deletions

View File

@ -45,4 +45,10 @@ public final class UPX
UPX upx = (UPX)o;
return Arrays.equals(_upx, upx._upx);
}
@Override
public String toString()
{
return "[UPX] " + Arrays.toString( _upx );
}
}