]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/pages/account/MyListingForm.java
FIX: some charset-insecure input streams.
[gigi.git] / src / org / cacert / gigi / pages / account / MyListingForm.java
index c1a6f4244067dcd6baeb2a2d80a92cf2912a5ecc..97f32629f16445f476f9e3b00a2f30f7e8c99c45 100644 (file)
@@ -1,6 +1,5 @@
 package org.cacert.gigi.pages.account;
 
-import java.io.InputStreamReader;
 import java.io.PrintWriter;
 import java.util.Map;
 
@@ -16,7 +15,7 @@ public class MyListingForm extends Form {
     private static Template template;
 
     static {
-        template = new Template(new InputStreamReader(MyListingForm.class.getResourceAsStream("MyListingForm.templ")));
+        template = new Template(MyListingForm.class.getResource("MyListingForm.templ"));
     }
 
     private User target;