Variables will be never used

This commit is contained in:
Bruno Oliveira 2014-05-07 08:15:02 -03:00
parent f77e3b5532
commit 5f7b0aae06
2 changed files with 0 additions and 2 deletions

View file

@ -221,7 +221,6 @@ public class Encode
private static String decodeBytes(String enc, CharsetDecoder decoder)
{
Matcher matcher = encodedChars.matcher(enc);
StringBuffer buf = new StringBuffer();
ByteBuffer bytes = ByteBuffer.allocate(enc.length() / 3);
while (matcher.find())
{

View file

@ -149,7 +149,6 @@ public class KeycloakUriBuilder {
Matcher hostPortMatch = hostPortPattern.matcher(host);
if (hostPortMatch.matches()) {
this.host = hostPortMatch.group(1);
int val = 0;
try {
this.port = Integer.parseInt(hostPortMatch.group(2));
} catch (NumberFormatException e) {