User: rednesto
Date: 14 Aug 24 00:12
Revision: 5273bb3ec019de72223f93d50544b79fde039ca8
Summary:
Check licenses in mixin-test-data
TeamCity URL: https://ci.mcdev.io/viewModification.html?tab=vcsModificationFiles&modId=9616&personal=false
Index: build.gradle.kts
===================================================================
--- build.gradle.kts (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ build.gradle.kts (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -368,6 +368,14 @@
},
)
}
+ register("mixinTestData") {
+ files.from(
+ project.fileTree(project.projectDir.resolve("mixin-test-data")) {
+ include("**/*.java", "**/*.kts")
+ exclude("**/build/**")
+ },
+ )
+ }
register("grammars") {
files.from(project.fileTree("src/main/grammars"))
}
Index: mixin-test-data/build.gradle.kts
===================================================================
--- mixin-test-data/build.gradle.kts (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/build.gradle.kts (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
plugins {
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/accessor/BaseMixin.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/accessor/BaseMixin.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/accessor/BaseMixin.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.accessor;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/accessor/BaseMixinInterface.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/accessor/BaseMixinInterface.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/accessor/BaseMixinInterface.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.accessor;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/ambiguousReference/MixedIn.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/ambiguousReference/MixedIn.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/ambiguousReference/MixedIn.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.ambiguousReference;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/GenericOneParam.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/GenericOneParam.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/GenericOneParam.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.invalidInjectorMethodSignatureFix;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/GenericTwoParams.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/GenericTwoParams.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/GenericTwoParams.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.invalidInjectorMethodSignatureFix;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInGeneric.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInGeneric.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInGeneric.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.invalidInjectorMethodSignatureFix;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInOuter.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInOuter.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInOuter.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.invalidInjectorMethodSignatureFix;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInSimple.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInSimple.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInSimple.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.invalidInjectorMethodSignatureFix;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureInspection/MixedInOuter.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureInspection/MixedInOuter.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureInspection/MixedInOuter.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,17 +1,25 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.invalidInjectorMethodSignatureInspection;
-import java.lang.String;
-
public class MixedInOuter {
public MixedInOuter() {
this(method1());
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/multipleTarget/MixedIn.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/multipleTarget/MixedIn.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/multipleTarget/MixedIn.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.multipleTarget;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/shadow/MixinBase.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/shadow/MixinBase.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/shadow/MixinBase.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.shadow;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/superClass/DemonWav.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/superClass/DemonWav.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/superClass/DemonWav.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.superClass;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/superClass/Entity.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/superClass/Entity.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/superClass/Entity.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.superClass;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/superClass/Minecrell.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/superClass/Minecrell.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/superClass/Minecrell.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.superClass;
Index: mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/unnecessaryQualifiedMemberReference/MixedIn.java
===================================================================
--- mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/unnecessaryQualifiedMemberReference/MixedIn.java (revision 7d574f576686eaaa5d8b6c629908e2910092eb0a)
+++ mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/unnecessaryQualifiedMemberReference/MixedIn.java (revision 5273bb3ec019de72223f93d50544b79fde039ca8)
@@ -1,11 +1,21 @@
/*
- * Minecraft Dev for IntelliJ
+ * Minecraft Development for IntelliJ
*
- * https://minecraftdev.org
+ * https://mcdev.io/
*
- * Copyright (c) 2021 minecraft-dev
+ * Copyright (C) 2024 minecraft-dev
*
- * MIT License
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, version 3.0 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see .
*/
package com.demonwav.mcdev.mixintestdata.unnecessaryQualifiedMemberReference;