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 e454136 commit e4fb811Copy full SHA for e4fb811
1 file changed
lib/project_view/control_row/control_row.dart
@@ -122,12 +122,8 @@ class RunningProcess with WindowListener {
122
_javaPath,
123
);
124
final StartupConfigModel startupConfigModel = configFile.modelOrProblem.match(
125
- (FileConfigFileLoadProblem l) {
126
- throw FatalConfigProblemException(problem: l);
127
- },
128
- (BaseConfigModel r) {
129
- return r as StartupConfigModel;
130
+ (FileConfigFileLoadProblem l) => throw FatalConfigProblemException(problem: l),
+ (BaseConfigModel r) => r as StartupConfigModel,
131
132
133
//Option: Mods Path
0 commit comments