jdk/src/java.desktop/share/classes/sun/applet/AppletViewer.java
changeset 32865 f9cb6e427f9e
parent 31061 fead7d86d75f
child 37550 c8252b8fea3d
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
  1079     private static final int XDELTA = 30;
  1079     private static final int XDELTA = 30;
  1080     private static final int YDELTA = XDELTA;
  1080     private static final int YDELTA = XDELTA;
  1081 
  1081 
  1082     static String encoding = null;
  1082     static String encoding = null;
  1083 
  1083 
  1084     static private Reader makeReader(InputStream is) {
  1084     private static Reader makeReader(InputStream is) {
  1085         if (encoding != null) {
  1085         if (encoding != null) {
  1086             try {
  1086             try {
  1087                 return new BufferedReader(new InputStreamReader(is, encoding));
  1087                 return new BufferedReader(new InputStreamReader(is, encoding));
  1088             } catch (IOException x) { }
  1088             } catch (IOException x) { }
  1089         }
  1089         }