You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The classes RevisionDecoder and RevisionEncoder reference classes from the Apache's commons-codec dependency to achieve Base64 en-/decoding. Since Java 8 this is not longer necessary, as we can use a "built-in" solution brought via the JRE .
Thus, we can eliminate the need to have this reference to commons-codec (in old versions).
Aims:
Get rid of this binding.
The text was updated successfully, but these errors were encountered:
- switches to `java.util.Base64` instead of `org.apache.commons.codec.binary.Base64`
- removes (hard) dependency commons-codec from `dkpro-jwpl-revisionmachine`
The classes
RevisionDecoder
andRevisionEncoder
reference classes from the Apache'scommons-codec
dependency to achieve Base64 en-/decoding. Since Java 8 this is not longer necessary, as we can use a "built-in" solution brought via the JRE .Thus, we can eliminate the need to have this reference to commons-codec (in old versions).
Aims:
The text was updated successfully, but these errors were encountered: