Improve wording in some inspections
This commit is contained in:
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '/' operator
|
||||
// FIX: Replace with '/'
|
||||
fun test() {
|
||||
class Test {
|
||||
operator fun div(a: Int): Test = Test()
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '/' operator
|
||||
// FIX: Replace with '/'
|
||||
fun test() {
|
||||
class Test {
|
||||
operator fun div(a: Int): Test = Test()
|
||||
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '==' operator
|
||||
// FIX: Replace with '=='
|
||||
|
||||
val x = 2.<caret>equals(2)
|
||||
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '==' operator
|
||||
// FIX: Replace with '=='
|
||||
|
||||
val x = 2 == 2
|
||||
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '>' operator
|
||||
// FIX: Replace with '>'
|
||||
|
||||
val x = 3.compare<caret>To(2) > 0
|
||||
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '>' operator
|
||||
// FIX: Replace with '>'
|
||||
|
||||
val x = 3 > 2
|
||||
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '<=' operator
|
||||
// FIX: Replace with '<='
|
||||
|
||||
val x = 0 >= 4.compare<caret>To(5)
|
||||
idea/testData/inspectionsLocal/conventionNameCalls/replaceCallWithBinaryOperator/lessEquals.kt.after
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '<=' operator
|
||||
// FIX: Replace with '<='
|
||||
|
||||
val x = 4 <= 5
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '-' operator
|
||||
// FIX: Replace with '-'
|
||||
fun test() {
|
||||
class Test {
|
||||
operator fun minus(a: Int): Test = Test()
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '-' operator
|
||||
// FIX: Replace with '-'
|
||||
fun test() {
|
||||
class Test {
|
||||
operator fun minus(a: Int): Test = Test()
|
||||
|
||||
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '!=' operator
|
||||
// FIX: Replace with '!='
|
||||
|
||||
val x = !2.eq<caret>uals(3)
|
||||
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '!=' operator
|
||||
// FIX: Replace with '!='
|
||||
|
||||
val x = 2 != 3
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '!=' operator
|
||||
// FIX: Replace with '!='
|
||||
|
||||
val x = !(2.<caret>equals(3))
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '!=' operator
|
||||
// FIX: Replace with '!='
|
||||
|
||||
val x = 2 != 3
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '==' operator
|
||||
// FIX: Replace with '=='
|
||||
|
||||
val x = !(2.equ<caret>als(3) && 4.equals(5))
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
// FIX: Replace with '==' operator
|
||||
// FIX: Replace with '=='
|
||||
|
||||
val x = !(2 == 3 && 4.equals(5))
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '+' operator
|
||||
// FIX: Replace with '+'
|
||||
fun test() {
|
||||
class Test {
|
||||
operator fun plus(a: Int): Test = Test()
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '+' operator
|
||||
// FIX: Replace with '+'
|
||||
fun test() {
|
||||
class Test {
|
||||
operator fun plus(a: Int): Test = Test()
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '..' operator
|
||||
// FIX: Replace with '..'
|
||||
fun test() {
|
||||
class Test {
|
||||
operator fun rangeTo(a: Int): Test = Test()
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '..' operator
|
||||
// FIX: Replace with '..'
|
||||
fun test() {
|
||||
class Test {
|
||||
operator fun rangeTo(a: Int): Test = Test()
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '%' operator
|
||||
// FIX: Replace with '%'
|
||||
|
||||
fun test() {
|
||||
class Test {
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '%' operator
|
||||
// FIX: Replace with '%'
|
||||
|
||||
fun test() {
|
||||
class Test {
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '*' operator
|
||||
// FIX: Replace with '*'
|
||||
fun test() {
|
||||
class Test {
|
||||
operator fun times(a: Int): Test = Test()
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// FIX: Replace with '*' operator
|
||||
// FIX: Replace with '*'
|
||||
fun test() {
|
||||
class Test {
|
||||
operator fun times(a: Int): Test = Test()
|
||||
|
||||
Reference in New Issue
Block a user