mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-03-28 04:07:01 -05:00
Fix code format
This commit is contained in:
@@ -71,8 +71,8 @@ public final class ForgeLoggerConfig {
|
||||
private record ArtifactCoordinates(String group, String name, @Nullable String classifier) {
|
||||
boolean matches(String notation) {
|
||||
final String[] parts = notation.split(":");
|
||||
return group.equals(parts[0]) && name.equals(parts[1]) &&
|
||||
(classifier == null || (parts.length >= 4 && classifier.equals(parts[3])));
|
||||
return group.equals(parts[0]) && name.equals(parts[1])
|
||||
&& (classifier == null || (parts.length >= 4 && classifier.equals(parts[3])));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -13,7 +13,7 @@ class FmlLogConfigTest extends Specification implements GradleProjectTestTrait {
|
||||
setup:
|
||||
def gradle = gradleProject(project: 'forge/loggerConfig', version: DEFAULT_GRADLE)
|
||||
gradle.gradleProperties << """
|
||||
|
||||
|
||||
minecraft_version=$minecraft
|
||||
forge_version=$forge
|
||||
""".stripIndent()
|
||||
|
||||
Reference in New Issue
Block a user