Skip to content

Commit 8b7a0d9

Browse files
authored
Format (#100)
1 parent 5f973ea commit 8b7a0d9

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

samples/semantickernel-concepts/semantickernel-syntax-examples/src/main/java/com/microsoft/semantickernel/samples/syntaxexamples/memory/AzureAISearch_DataStorage.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,13 @@ public static void dataStorageWithAzureAISearch(
115115

116116
// Create a new Azure AI Search vector store
117117
var azureAISearchVectorStore = AzureAISearchVectorStore.builder()
118-
.withClient(searchClient)
119-
.withOptions(new AzureAISearchVectorStoreOptions())
120-
.build();
118+
.withClient(searchClient)
119+
.withOptions(new AzureAISearchVectorStoreOptions())
120+
.build();
121121

122122
String collectionName = "skgithubfiles";
123-
var collection = azureAISearchVectorStore.getCollection(collectionName, GitHubFile.class, null);
123+
var collection = azureAISearchVectorStore.getCollection(collectionName, GitHubFile.class,
124+
null);
124125

125126
// Create collection if it does not exist and store data
126127
collection

samples/semantickernel-concepts/semantickernel-syntax-examples/src/main/java/com/microsoft/semantickernel/samples/syntaxexamples/memory/Redis_DataStorage.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ public GitHubFile(
7171
public String getId() {
7272
return id;
7373
}
74+
7475
public String getDescription() {
7576
return description;
7677
}

0 commit comments

Comments
 (0)