We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da78201 commit 83c43b2Copy full SHA for 83c43b2
src/src/com/tns/V8Config.java
@@ -11,7 +11,7 @@ class V8Config
11
12
public static Object[] fromPackageJSON(File appDir)
13
{
14
- Object[] result = MakeDefaultOptions();
+ Object[] result = makeDefaultOptions();
15
File packageInfo = new File (appDir, "/app/package.json");
16
if(!packageInfo.exists())
17
@@ -43,7 +43,7 @@ public static Object[] fromPackageJSON(File appDir)
43
return result;
44
}
45
46
- private static Object[] MakeDefaultOptions()
+ private static Object[] makeDefaultOptions()
47
48
Object[] result = new Object[2];
49
// v8 startup flags, defaults to --expose_gc due to tns_modules requirement
0 commit comments