Skip to content

Commit 6fddfb4

Browse files
authored
Merge pull request #788 from bohdan-harniuk/uct-index-new-versions
UCT: Indexed Magento v2.4.3-p1
2 parents d233ec9 + 0ec36fb commit 6fddfb4

File tree

7 files changed

+6
-2
lines changed

7 files changed

+6
-2
lines changed
65.8 KB
Binary file not shown.
531 Bytes
Binary file not shown.
839 Bytes
Binary file not shown.
401 Bytes
Binary file not shown.
804 KB
Binary file not shown.

src/com/magento/idea/magento2uct/inspections/UctProblemsHolder.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ private List<ProblemDescriptor> getMyProblems() {
8989
try {
9090
myProblemsField = ProblemsHolder.class.getDeclaredField("myProblems");
9191
myProblemsField.setAccessible(true);
92-
final List<ProblemDescriptor> myProblems =
92+
93+
@SuppressWarnings("unchecked") final List<ProblemDescriptor> myProblems =
9394
(List<ProblemDescriptor>) myProblemsField.get(this);
9495
myProblemsField.setAccessible(false);
9596

src/com/magento/idea/magento2uct/packages/SupportedVersion.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ public enum SupportedVersion {
3636
V242("2.4.2"),
3737
V2421("2.4.2-p1"),
3838
V2422("2.4.2-p2"),
39-
V243("2.4.3");
39+
V243("2.4.3"),
40+
V2431("2.4.3-p1"),
41+
V2441("2.4.4-beta1"),
42+
V2442("2.4.4-beta2");
4043

4144
private final String version;
4245

0 commit comments

Comments
 (0)