chore: replace all instances of 'final static' with 'static final'

This commit is contained in:
Alexandros Pappas
2024-12-13 13:08:16 +01:00
committed by Ilayaperumal Gopinathan
parent dee4d2705b
commit 7d53ef2056
17 changed files with 25 additions and 25 deletions

View File

@@ -102,7 +102,7 @@ NOTE: For more information go to https://dataplatform.cloud.ibm.com/docs/content
----
public class MyClass {
private final static String MODEL = "google/flan-ul2";
private static final String MODEL = "google/flan-ul2";
private final WatsonxAiChatModel chatModel;
@Autowired