fix build bustage

This commit is contained in:
Stefan Breunig
2013-03-10 17:22:17 +01:00
parent 6f2f1302be
commit af24be16e7

View File

@ -10,6 +10,7 @@ import android.webkit.WebView;
import android.webkit.WebViewClient;
import java.io.InputStream;
import java.io.IOException;
import java.io.StringBufferInputStream;
public class IITC_WebViewClient extends WebViewClient {
@ -19,8 +20,12 @@ public class IITC_WebViewClient extends WebViewClient {
private static WebResourceResponse iitcjs;
public IITC_WebViewClient(Context c) throws java.io.IOException {
public IITC_WebViewClient(Context c) {
try {
loadIITC_JS(c);
} catch(IOException e) {
e.printStackTrace();
}
}
private static void loadIITC_JS(Context c) throws java.io.IOException {