Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/tivo/intellij-haxe
Browse files Browse the repository at this point in the history
  • Loading branch information
EBatTiVo committed Jun 1, 2015
2 parents 1b9652c + 0ae5e91 commit 8117bdc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion idea_v14.1.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
idea.version=14.1

# Human-readable versions of IDEA that this build is compatible with.
plugin.compatibility.description=IDEA 14.1. Warning: This plugin will NOT work correctly using IDEA version 14.1.2.
plugin.compatibility.description=IDEA 14.1.3

# ###################################################
# IDEA build IDs that are compatible with this plugin.
Expand Down
6 changes: 5 additions & 1 deletion src/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,16 @@
<depends optional="true" config-file="flex-debugger-support.xml">com.intellij.flex</depends>
<depends optional="true" config-file="debugger-support.xml">com.intellij.modules.ultimate</depends>

<version>0.9.4 for @plugin.compatibility.description@</version>
<version>0.9.5 for @plugin.compatibility.description@</version>
<change-notes>
<![CDATA[
<p>This build is compatible with @plugin.compatibility.description@</p>
<p>It was built using IDEA build @idea.sdk.version@</p>
<p/>
<p>0.9.5: (community release)</p>
<ul>
<li>Fix Cut/Copy/Paste not work #196</li>
</ul>
<p>0.9.4: (community release)</p>
<ul>
<li>Fix compile error highlighting in the output pane and jumping to source location when an error is clicked upon (Issues #129, #160, #180).</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
import org.jetbrains.annotations.Nullable;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Set;

Expand Down Expand Up @@ -90,6 +91,10 @@ public boolean isSoft() {
}

private List<? extends PsiElement> resolveNamesToParents(List<? extends PsiElement> nameList) {
if (nameList == null) {
return Collections.emptyList();
}

List<PsiElement> result = new ArrayList<PsiElement>();
for (PsiElement element : nameList) {
PsiElement elementToAdd = element;
Expand Down

0 comments on commit 8117bdc

Please sign in to comment.