Skip to content

Commit 66858d8

Browse files
emilypgoogleVinayGuthal
authored andcommitted
Format
1 parent 751120f commit 66858d8

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

firebase-functions/src/main/java/com/google/firebase/functions/FirebaseFunctionsException.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public class FirebaseFunctionsException : FirebaseException {
2929
*/
3030
public enum class Code(private val value: Int) {
3131
/**
32-
* The operation completed successfully. `FirebaseFunctionsException` will never have a status of
33-
* `OK`.
32+
* The operation completed successfully. `FirebaseFunctionsException` will never have a status
33+
* of `OK`.
3434
*/
3535
OK(0),
3636

@@ -126,8 +126,8 @@ public class FirebaseFunctionsException : FirebaseException {
126126
}
127127

128128
/**
129-
* Takes an HTTP status code and returns the corresponding [Code] error code. This is
130-
* the standard HTTP status code -> error mapping defined in:
129+
* Takes an HTTP status code and returns the corresponding [Code] error code. This is the
130+
* standard HTTP status code -> error mapping defined in:
131131
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
132132
*
133133
* @param status An HTTP status code.

firebase-functions/src/main/java/com/google/firebase/functions/HttpsCallableResult.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ private val data: Any?) {
2121
* Returns the data that was returned from the Callable HTTPS trigger.
2222
*
2323
* The data is in the form of native Java objects. For example, if your trigger returned an array,
24-
* this object would be a `List<Object>`. If your trigger returned a JavaScript object with keys and
25-
* values, this object would be a `Map<String, Object>`.
24+
* this object would be a `List<Object>`. If your trigger returned a JavaScript object with keys
25+
* and values, this object would be a `Map<String, Object>`.
2626
*/
2727
public fun getData(): Any? {
2828
return data

firebase-functions/src/main/java/com/google/firebase/functions/Serializer.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ internal class Serializer {
175175
internal const val LONG_TYPE: String = "type.googleapis.com/google.protobuf.Int64Value"
176176

177177
@VisibleForTesting
178-
internal const val UNSIGNED_LONG_TYPE: String = "type.googleapis.com/google.protobuf.UInt64Value"
178+
internal const val UNSIGNED_LONG_TYPE: String =
179+
"type.googleapis.com/google.protobuf.UInt64Value"
179180
}
180181
}

0 commit comments

Comments
 (0)