From 0856de2c0095c995a1807c84be52cbfad7ff0715 Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 15 Dec 2015 07:04:30 +0100 Subject: [PATCH] Add missing semicolon in 'Base64' JavaDoc --- src/main/java/com/firebase/tubesock/Base64.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/firebase/tubesock/Base64.java b/src/main/java/com/firebase/tubesock/Base64.java index f31befb..a77147d 100644 --- a/src/main/java/com/firebase/tubesock/Base64.java +++ b/src/main/java/com/firebase/tubesock/Base64.java @@ -10,7 +10,7 @@ * * On byte arrays the encoder is about 20% faster than Jakarta Commons Base64 Codec for encode and * about 50% faster for decoding large arrays. This implementation is about twice as fast on very small - * arrays (< 30 bytes). If source/destination is a String this + * arrays (< 30 bytes). If source/destination is a String this * version is about three times as fast due to the fact that the Commons Codec result has to be recoded * to a String from byte[], which is very expensive.

*