Skip to content

Commit d7fb6a3

Browse files
authored
Merge pull request #152 from aternosorg/fabric-entry-stage
Fix FabricEntryStageProblem if class is included in error message
2 parents 836d80e + e28f0c7 commit d7fb6a3

2 files changed

Lines changed: 664 additions & 3 deletions

File tree

src/Analysis/Problem/Fabric/FabricEntryStageProblem.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function getMessage(): string
2121
public static function getPatterns(): array
2222
{
2323
return [
24-
"/java.lang.RuntimeException: Could not execute entrypoint stage '[^']+' due to errors, provided by '(" . static::$modIDPattern . ")'!/"
24+
"/java.lang.RuntimeException: Could not execute entrypoint stage '[^']+' due to errors, provided by '(" . static::$modIDPattern . ")'/"
2525
];
2626
}
2727

@@ -33,4 +33,4 @@ public function setMatches(array $matches, mixed $patternKey): void
3333
$this->setModName($matches[1]);
3434
$this->addSolution(new ModRemoveSolution($this->getModName()));
3535
}
36-
}
36+
}

0 commit comments

Comments
 (0)