Skip to content

Commit 5795691

Browse files
committed
ErrorProne noise reduction.
1 parent a6b5895 commit 5795691

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pkix/src/main/java/org/bouncycastle/est/HttpUtil.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,6 @@ private void discard(int i)
173173
static class Headers
174174
extends HashMap<String, String[]>
175175
{
176-
private static final String EMPTY = "";
177-
178-
179176
public Headers()
180177
{
181178
super();
@@ -198,7 +195,7 @@ public String getFirstValueOrEmpty(String key)
198195
{
199196
return j[0];
200197
}
201-
return EMPTY;
198+
return "";
202199
}
203200

204201
public String[] getValues(String key)

0 commit comments

Comments
 (0)