-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add List Versions operation in Remote Config #498
Conversation
|
460d914
to
180f8f9
Compare
180f8f9
to
c965c48
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks pretty good. Just a few thoughts on improving the implementation.
src/main/java/com/google/firebase/remoteconfig/ListVersionsOptions.java
Outdated
Show resolved
Hide resolved
src/main/java/com/google/firebase/remoteconfig/ListVersionsOptions.java
Outdated
Show resolved
Hide resolved
src/main/java/com/google/firebase/remoteconfig/ListVersionsResult.java
Outdated
Show resolved
Hide resolved
src/test/java/com/google/firebase/remoteconfig/FirebaseRemoteConfigClientImplTest.java
Outdated
Show resolved
Hide resolved
src/main/java/com/google/firebase/remoteconfig/ListVersionsOptions.java
Outdated
Show resolved
Hide resolved
src/test/java/com/google/firebase/remoteconfig/ListVersionsResultTest.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! LGTM with a suggestion.
return this; | ||
} | ||
|
||
private String convertToUtcZuluFormat(long millis) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably belongs in the shared util. I assume there are other places where this is needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good call. Currently, we use it only in ListVersionsOptions
. I moved it to Utils anyway to future proof :)
ListVersionsOptions
,ListVersionsResult
typesRelated to #446