Skip to content

Commit f01fc68

Browse files
committed
remove unnecessary debug log statements
1 parent bf7882f commit f01fc68

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

src/src/com/tns/V8Config.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ public static Object[] fromPackageJSON(File appDir)
2424
File packageInfo = new File(appDir, "/app/package.json");
2525
if (!packageInfo.exists())
2626
{
27-
android.util.Log.d("~~~~~~~~", "A PACKAGE INFO DOES NOT EXIST");
2827
return result;
2928
}
3029

@@ -33,9 +32,7 @@ public static Object[] fromPackageJSON(File appDir)
3332
{
3433
rootObject = FileSystem.readJSONFile(packageInfo);
3534
if (rootObject != null && rootObject.has(AndroidKey))
36-
{
37-
android.util.Log.d("~~~~~~~~", "Getting keys inside android");
38-
35+
{
3936
JSONObject androidObject = rootObject.getJSONObject(AndroidKey);
4037
if (androidObject.has(V8FlagsKey))
4138
{
@@ -68,8 +65,6 @@ public static Object[] fromPackageJSON(File appDir)
6865
}
6966
if(androidObject.has(EnableHeapSnapshotKey))
7067
{
71-
72-
android.util.Log.d("~~~~~~~~", "Found thy key");
7368
result[5] = androidObject.getBoolean(EnableHeapSnapshotKey);
7469
}
7570
}

0 commit comments

Comments
 (0)