We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff2134e commit 63d5995Copy full SHA for 63d5995
1 file changed
src/io/flutter/sdk/FlutterSdkVersion.java
@@ -129,7 +129,6 @@ private static String readVersionString(@NotNull VirtualFile file) {
129
final Map<String, Object> json = new Gson().fromJson(data, new TypeToken<Map<String, Object>>() {
130
}.getType());
131
if (json != null && json.containsKey("frameworkVersion")) {
132
- System.out.println("FlutterSdkVersion.readVersionString NEW " + json.get("frameworkVersion"));
133
return (String)json.get("frameworkVersion");
134
}
135
0 commit comments