Skip to content

Commit aa803ee

Browse files
author
Vitaliy Boyko
committed
Updated CHANGELOG.md
1 parent 266e7c9 commit aa803ee

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
66

77
## 3.0.1
88

9+
### Fixed
10+
11+
- Skipped IDEA include tag causing error
12+
- Fixed StringIndexOutOfBoundsException on PluginInspection
13+
914
## 3.0.0
1015

1116
### Added

src/com/magento/idea/magento2plugin/stubs/indexes/xml/PhpClassNameIndex.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@ private void fillMap(final XmlTag parentTag, final Map<String, Void> resultMap)
8383
}
8484

8585
//skipping IDEA include tag
86-
List<XmlTag> ideaIncludeTags = XmlPsiTreeUtil.findSubTagsOfParent(childTag, "xi:include");
86+
List<XmlTag> ideaIncludeTags = XmlPsiTreeUtil.findSubTagsOfParent(
87+
childTag,
88+
"xi:include"
89+
);
8790
if (!ideaIncludeTags.isEmpty()) {
8891
return;
8992
}

0 commit comments

Comments
 (0)