From 8b0da63f86a6302241aefbf528272e996673c460 Mon Sep 17 00:00:00 2001 From: chrisly42 Date: Tue, 23 Apr 2019 18:19:47 +0200 Subject: [PATCH] Another fix for AssertThatGuavaOptional inspection regarding using the same family name for slightly different quick fix executions (really, Jetbrains, this sucks for no reason). Consolidated location of methods. --- README.md | 4 +++ build.gradle | 7 ++++- .../inspections/AbstractAssertJInspection.kt | 14 +++++----- .../AssertThatBinaryExpressionInspection.kt | 26 ++++++++--------- .../AssertThatGuavaOptionalInspection.kt | 28 +++++++++++++------ .../AssertThatInstanceOfInspection.kt | 22 +++++++-------- ...tThatInvertedBooleanConditionInspection.kt | 20 ++++++------- .../AssertThatStringExpressionInspection.kt | 28 +++++++++---------- .../AssertThatGuavaOptionalInspectionTest.kt | 25 +++++++++-------- 9 files changed, 99 insertions(+), 75 deletions(-) diff --git a/README.md b/README.md index e264293..93af54d 100644 --- a/README.md +++ b/README.md @@ -327,6 +327,10 @@ Feel free to use the code (in package de.platon42.intellij.jupiter) for your pro ## Changelog +#### V0.7 (unreleased) +- Another fix for AssertThatGuavaOptional inspection regarding using the same family name for slightly different quick fix executions + (really, Jetbrains, this sucks for no reason). + #### V0.6 (22-Apr-19) - New AssertThatStringExpression inspection that will move ```isEmpty()```, ```equals()```, ```equalsIgnoreCase()```, ```contains()```, ```startsWith()```, and ```endsWith()``` out of actual expression. diff --git a/build.gradle b/build.gradle index bae5092..cef0c0c 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { } group 'de.platon42' -version '0.6' +version '0.7' repositories { mavenCentral() @@ -40,6 +40,11 @@ intellij { patchPluginXml { changeNotes """ +

V0.7 (unreleased)

+

V0.6 (22-Apr-19)