Skip to content

Commit cae7e73

Browse files
committed
feat(core): update kotlin to 1.1.0-rc-91
1 parent 294d653 commit cae7e73

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ version = "0.0.5-SNAPSHOT"
1313

1414
buildscript {
1515

16-
val kotlinVersion = "1.1.0-beta-38"
16+
val kotlinVersion = "1.1.0-rc-91"
1717
val springBootVersion = "1.5.1.RELEASE"
1818
val gradleNodePluginVersion = "1.1.1"
1919
val dependencyManagementVersion = "1.0.0.RELEASE"

src/main/kotlin/com/shardis/domain/BaseEntity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ abstract class BaseEntity {
2020

2121
override fun equals(other: Any?): Boolean {
2222
if (this === other) return true
23-
if (other == null || javaClass != other.javaClass) return false
23+
if (other == null || this::class.java != other::class.java) return false
2424

2525
val that = other as BaseEntity?
2626

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3201,7 +3201,7 @@ karma-cli@1.0.1:
32013201
dependencies:
32023202
resolve "^1.1.6"
32033203

3204-
karma-coverage-istanbul-reporter@^0.2.2:
3204+
karma-coverage-istanbul-reporter@0.2.2:
32053205
version "0.2.2"
32063206
resolved "https://registry.yarnpkg.com/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-0.2.2.tgz#d17bb802db4287d3b6a8ef4f10d79c318536e0c4"
32073207
dependencies:

0 commit comments

Comments
 (0)