Skip to content

Commit 63d5995

Browse files
authored
Remove a debugging System.out.println() call (#8472)
Cleanup from 65d5044
1 parent ff2134e commit 63d5995

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/io/flutter/sdk/FlutterSdkVersion.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ private static String readVersionString(@NotNull VirtualFile file) {
129129
final Map<String, Object> json = new Gson().fromJson(data, new TypeToken<Map<String, Object>>() {
130130
}.getType());
131131
if (json != null && json.containsKey("frameworkVersion")) {
132-
System.out.println("FlutterSdkVersion.readVersionString NEW " + json.get("frameworkVersion"));
133132
return (String)json.get("frameworkVersion");
134133
}
135134
}

0 commit comments

Comments
 (0)