mirror of
https://github.com/apache/cordova-android.git
synced 2026-04-23 00:00:09 +08:00
Update classes to use module, and make constructors consistent.
This commit is contained in:
@@ -4,15 +4,16 @@ import java.io.*;
|
||||
|
||||
import android.webkit.WebView;
|
||||
|
||||
public class FileUtils {
|
||||
public class FileUtils extends Module {
|
||||
|
||||
|
||||
WebView mView;
|
||||
FileReader f_in;
|
||||
FileWriter f_out;
|
||||
|
||||
public FileUtils(WebView view)
|
||||
public FileUtils(WebView view, DroidGap gap)
|
||||
{
|
||||
super(view, gap);
|
||||
mView = view;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user