Skip to content

Commit 370318a

Browse files
committed
Reformats code to fix the formatting style
1 parent 7c78721 commit 370318a

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

src/main/java/com/meilisearch/sdk/model/IndexStats.java

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,13 @@ public class IndexStats {
2222
public IndexStats() {}
2323

2424
public IndexStats(
25-
long numberOfDocuments, boolean isIndexing, Map<String, Integer> fieldDistribution,
26-
long rawDocumentDbSize, long avgDocumentSize, long numberOfEmbeddedDocuments, long numberOfEmbeddings) {
25+
long numberOfDocuments,
26+
boolean isIndexing,
27+
Map<String, Integer> fieldDistribution,
28+
long rawDocumentDbSize,
29+
long avgDocumentSize,
30+
long numberOfEmbeddedDocuments,
31+
long numberOfEmbeddings) {
2732
this.numberOfDocuments = numberOfDocuments;
2833
this.isIndexing = isIndexing;
2934
this.fieldDistribution = fieldDistribution;

src/main/java/com/meilisearch/sdk/model/Stats.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ public class Stats {
1616
protected Map<String, IndexStats> indexes;
1717
protected long usedDatabaseSize;
1818

19-
public Stats(long databaseSize, Date lastUpdate, Map<String, IndexStats> indexes,
19+
public Stats(
20+
long databaseSize,
21+
Date lastUpdate,
22+
Map<String, IndexStats> indexes,
2023
long usedDatabaseSize) {
2124
this.databaseSize = databaseSize;
2225
this.lastUpdate = lastUpdate;

0 commit comments

Comments
 (0)