mirror of https://github.com/apache/poi.git
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:
parent
0d2e6a8378
commit
34d7f18db4
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue