1 16 package com.google.gwt.dev.shell.ie; 17 18 import com.google.gwt.dev.shell.CheckForUpdates; 19 20 23 public class CheckForUpdatesIE6 extends CheckForUpdates { 24 25 public CheckForUpdatesIE6() { 26 LowLevelIE6.init(); 27 } 28 29 protected byte[] doHttpGet(String userAgent, String url) { 30 byte[] response = LowLevelIE6.httpGet(userAgent, url); 31 return response; 32 } 33 34 } 35 | Popular Tags |