Skip to content

Commit c947ff5

Browse files
committed
new api.txt
1 parent 22e8b26 commit c947ff5

File tree

6 files changed

+1177
-258
lines changed

6 files changed

+1177
-258
lines changed

google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/stages/AggregateHints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public AggregateHints() {
2222
this(InternalOptions.EMPTY);
2323
}
2424

25-
public AggregateHints(InternalOptions options) {
25+
AggregateHints(InternalOptions options) {
2626
super(options);
2727
}
2828

google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/stages/AggregateOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public AggregateOptions() {
2222
this(InternalOptions.EMPTY);
2323
}
2424

25-
public AggregateOptions(InternalOptions options) {
25+
AggregateOptions(InternalOptions options) {
2626
super(options);
2727
}
2828

google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/stages/SampleOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public SampleOptions() {
2222
this(InternalOptions.EMPTY);
2323
}
2424

25-
public SampleOptions(InternalOptions options) {
25+
SampleOptions(InternalOptions options) {
2626
super(options);
2727
}
2828

google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/stages/StageUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static com.google.firestore.v1.Pipeline.Stage toStageProto(Stage stage) {
2727
return stage.toStageProto();
2828
}
2929

30-
@SuppressWarnings("ClassEscapesDefinedScope")
30+
@SuppressWarnings("ReferencesHidden")
3131
@InternalApi
3232
public static ImmutableMap<String, Value> toMap(AbstractOptions<?> options) {
3333
return options.options.options;

0 commit comments

Comments
 (0)