mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 778468 - Part 2: Move INIParser to org.mozilla.gecko.util package. r=mfinkle
--HG-- extra : rebase_source : c5f40ac931084fdcdd73304900fd5ecd0210c3ac
This commit is contained in:
parent
1fa3b14de9
commit
8af1e3ae3b
@ -9,6 +9,9 @@
|
||||
|
||||
package org.mozilla.gecko;
|
||||
|
||||
import org.mozilla.gecko.util.INIParser;
|
||||
import org.mozilla.gecko.util.INISection;
|
||||
|
||||
import android.content.Context;
|
||||
import android.os.SystemClock;
|
||||
import android.text.TextUtils;
|
||||
|
@ -2,7 +2,7 @@
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
package org.mozilla.gecko;
|
||||
package org.mozilla.gecko.util;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.BufferedWriter;
|
||||
@ -14,7 +14,7 @@ import java.io.IOException;
|
||||
import java.util.Enumeration;
|
||||
import java.util.Hashtable;
|
||||
|
||||
public class INIParser extends INISection {
|
||||
public final class INIParser extends INISection {
|
||||
// default file to read and write to
|
||||
private File mFile = null;
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
package org.mozilla.gecko;
|
||||
package org.mozilla.gecko.util;
|
||||
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
@ -12,7 +12,7 @@ import java.io.IOException;
|
||||
import java.util.Enumeration;
|
||||
import java.util.Hashtable;
|
||||
|
||||
class INISection {
|
||||
public class INISection {
|
||||
private static final String LOGTAG = "INIParser";
|
||||
|
||||
// default file to read and write to
|
||||
|
@ -23,6 +23,8 @@ MOZGLUE_JAVA_FILES := \
|
||||
UTIL_JAVA_FILES := \
|
||||
ActivityResultHandler.java \
|
||||
ActivityResultHandlerMap.java \
|
||||
INIParser.java \
|
||||
INISection.java \
|
||||
util/FloatUtils.java \
|
||||
$(NULL)
|
||||
|
||||
@ -80,8 +82,6 @@ FENNEC_JAVA_FILES = \
|
||||
GeckoThread.java \
|
||||
GlobalHistory.java \
|
||||
GeckoViewsFactory.java \
|
||||
INIParser.java \
|
||||
INISection.java \
|
||||
InputMethods.java \
|
||||
LinkPreference.java \
|
||||
LinkTextView.java \
|
||||
|
Loading…
Reference in New Issue
Block a user