1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-21 06:58:51 -05:00

From audit: remove throws statement

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@2317 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2014-09-04 06:48:19 +00:00
parent e394d79518
commit 78ccaf6163

View File

@ -108,9 +108,8 @@ public final class IOUtil {
*
* @param value input value
* @return base64 value
* @throws IOException on error
*/
public static byte[] encodeBase64(byte[] value) throws IOException {
public static byte[] encodeBase64(byte[] value) {
return Base64.encodeBase64(value);
}