NightWhistler / PageTurner

Android e-book reader with cloud synchronization
pageturner-reader.org
GNU General Public License v3.0
466 stars 221 forks source link

Deprecated URLDecoder.decode called in ResourceLoader class #552

Closed tundebabzy closed 10 years ago

tundebabzy commented 10 years ago

Line 122 in ResourceLoader.java: 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?

NightWhistler commented 10 years ago

Sure, that way you get the credit for the fix :)

tundebabzy commented 10 years ago

553 fixes this