Skip to content

Commit

Permalink
fixing equals check for disabled injected languages #266
Browse files Browse the repository at this point in the history
  • Loading branch information
ahus1 committed Jun 4, 2019
1 parent 58c0672 commit 73da593
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ This document provides a high-level view of the changes introduced by release.

== Release notes

=== 0.26.15

- fixing equals check for disabled injected languages (#266)

=== 0.26.14

- fixing NullPointerException in settings processing (#266)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public boolean equals(Object o) {
if (myIsVerticalSplit != that.myIsVerticalSplit) return false;
if (myIsEditorFirst != that.myIsEditorFirst) return false;
if (myEnableInjections != that.myEnableInjections) return false;
if (Objects.equals(myDisabledInjectionsByLanguage, that.myDisabledInjectionsByLanguage)) return false;
if (!Objects.equals(myDisabledInjectionsByLanguage, that.myDisabledInjectionsByLanguage)) return false;
return attributes.equals(that.attributes);
}

Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin version="2" url="https://github.com/asciidoctor/asciidoctor-intellij-plugin">
<id>org.asciidoctor.intellij.asciidoc</id>
<name>AsciiDoc</name>
<version>0.26.14</version>
<version>0.26.15</version>
<vendor email="alexander.schwartz@gmx.net" url="https://github.com/asciidoctor/asciidoctor-intellij-plugin">Asciidoctor IntelliJ Plugin Project</vendor>

<description><![CDATA[
Expand Down Expand Up @@ -32,6 +32,7 @@ Therefore, JetBrains OpenJDK pre-bundled with your IDE is recommended.

<change-notes><![CDATA[
<ul>
<li>0.26.15 fixing equals check for disabled injected languages (#266)
<li>0.26.14 fixing NullPointerException in settings processing (#266)<br>
supporting pass-through inline content
<li>0.26.13 update to asciidoctorj-diagram:1.5.18<br>
Expand Down

0 comments on commit 73da593

Please sign in to comment.