Skip to content

Commit 6371fd3

Browse files
fix: fix the wrong return type for Pipeline.as(String alias) (#2330)
* Fix the wrong return type for Pipeline.as(String alias) * chore: generate libraries at Fri Feb 27 19:17:30 UTC 2026 --------- Co-authored-by: cloud-java-bot <[email protected]>
1 parent 6cf1ad9 commit 6371fd3

File tree

1 file changed

+3
-3
lines changed
  • google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions

1 file changed

+3
-3
lines changed

google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Expression.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4332,11 +4332,11 @@ public final Ordering descending() {
43324332
* names to calculated values.
43334333
*
43344334
* @param alias The alias to assign to this expression.
4335-
* @return A new {@link Selectable} (typically an {@link AliasedExpression}) that wraps this
4336-
* expression and associates it with the provided alias.
4335+
* @return A new {@link AliasedExpression} that wraps this expression and associates it with the
4336+
* provided alias.
43374337
*/
43384338
@BetaApi
4339-
public Selectable as(String alias) {
4339+
public AliasedExpression as(String alias) {
43404340
return new AliasedExpression(this, alias);
43414341
}
43424342

0 commit comments

Comments
 (0)