Remove unused import from RequestLogger

Not only was StringJoiner unused, it's also a class only available in java 1.8, which is a problem given that the REST client has minimum java required set to 1.7
This commit is contained in:
javanna 2016-12-13 15:01:51 +01:00 committed by Luca Cavanna
parent 049fd3991c
commit 478cd78047
1 changed files with 0 additions and 1 deletions

View File

@ -37,7 +37,6 @@ import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.util.StringJoiner;
/**
* Helper class that exposes static methods to unify the way requests are logged.