Skip to content

Commit 2235705

Browse files
committed
1570 - Spotbugs
1 parent e4296e7 commit 2235705

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

server/libs/platform/platform-ai/platform-ai-service/src/main/java/com/bytechef/platform/ai/config/VectorStoreConfiguration.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,10 @@ public PropertyDecorator(BaseProperty property) {
654654
this.type = Type.TIME;
655655
this.location = Location.COMPONENT;
656656
}
657-
default -> throw new IllegalStateException("Unexpected value: " + property.getClass());
657+
default -> {
658+
this.type = Type.NULL;
659+
this.location = Location.COMPONENT;
660+
}
658661
}
659662
}
660663

0 commit comments

Comments
 (0)