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
1 changed files with 1 additions and 2 deletions

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);
}