Closed tundebabzy closed 10 years ago
Line 122 in ResourceLoader.java: holder.href = URLDecoder.decode(forHref);
holder.href = URLDecoder.decode(forHref);
URLDecoder.decode(String s) is deprecated. The method should be swapped with URLDecoder.decode(String s, String enc). Its just a one line fix. Do I make a pull?
URLDecoder.decode(String s)
URLDecoder.decode(String s, String enc)
Sure, that way you get the credit for the fix :)
Line 122 in ResourceLoader.java:
holder.href = URLDecoder.decode(forHref);
URLDecoder.decode(String s)
is deprecated. The method should be swapped withURLDecoder.decode(String s, String enc)
. Its just a one line fix. Do I make a pull?