Skip to content

Commit 764c3ce

Browse files
committed
Fixed last review issues
1 parent 8665433 commit 764c3ce

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

utbot-framework/src/main/java/org/utbot/engine/overrides/stream/UtDoubleStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public UtDoubleStream(Double[] data, int startInclusive, int endExclusive) {
7373
* <li> elementData is marked as parameter </li>
7474
* <li> elementData.storage and it's elements are marked as parameters </li>
7575
*/
76-
@SuppressWarnings({"DuplicatedCode"})
76+
@SuppressWarnings("DuplicatedCode")
7777
void preconditionCheck() {
7878
if (alreadyVisited(this)) {
7979
return;

utbot-framework/src/main/kotlin/org/utbot/engine/Resolver.kt

+5-1
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,11 @@ class Resolver(
813813
// as const or store model.
814814
if (defaultBaseType is PrimType) return null
815815

816-
if (actualType.numDimensions == 0) {
816+
require(!defaultType.isJavaLangObject()) {
817+
"Object type $defaultType is unexpected in fallback to default type"
818+
}
819+
820+
if (defaultType.numDimensions == 0) {
817821
return defaultType
818822
}
819823

0 commit comments

Comments
 (0)