Skip to content

Commit 8348e92

Browse files
committed
Minor code cleanup in EmbeddingOptions
1 parent 6bdb395 commit 8348e92

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-ai-core/src/main/java/org/springframework/ai/embedding/EmbeddingOptions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 - 2024 the original author or authors.
2+
* Copyright 2023-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -22,10 +22,10 @@
2222
*/
2323
public interface EmbeddingOptions extends ModelOptions {
2424

25-
public static class EmptyEmbeddingOptions implements EmbeddingOptions {
25+
class EmptyEmbeddingOptions implements EmbeddingOptions {
2626

2727
}
2828

29-
public static EmbeddingOptions EMPTY = new EmptyEmbeddingOptions();
29+
EmbeddingOptions EMPTY = new EmptyEmbeddingOptions();
3030

3131
}

0 commit comments

Comments
 (0)