Skip to content

Commit

Permalink
release 1.4.21
Browse files Browse the repository at this point in the history
  • Loading branch information
m0rkeulv committed Jan 1, 2024
1 parent 45b3d36 commit fd232cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog

## 1.4.21
* Added: support for comment line/block command in HXML files
* Added: Support for comment line/block command in HXML files
* Improvement: Attempt at restoring `Member pull up` refactoring
* Improvement: Attempt at restoring `Member push down` refactoring
* Improvement: Attempt at restoring `extract to interface` refactoring
Expand All @@ -11,7 +11,7 @@
* Improved type resolving for key-value loops
* Improvement: Reworked keyword completion
* Fixed: Incorrect keyword suggestions (KNEVER-> never, KTO -> to, KFROM -> from)
* Fixed: Type completion should now allow same name if type is in different package
* Fixed: Type completion should now allow identical names if package is different
* Fixed: callExpression annotator now checks for @:callable
* Misc NPE fixes.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ private void syncLibraryLists(@NotNull Sdk sdk,
currentList.iterate(new HaxeLibraryList.Lambda() {
@Override
public boolean processEntry(HaxeLibraryReference entry) {
if (entry.isManaged()) { // (e.g. starts with "haxelib|"
if (entry.isManaged()) { // (e.g. starts with "haxelib:"
currentManagedEntries.add(entry);
} else {
currentUnmanagedEntries.add(entry);
Expand Down

0 comments on commit fd232cc

Please sign in to comment.