Skip to content

Commit ee44298

Browse files
author
Athira M
committed
Fix lint errors
1 parent 38f658d commit ee44298

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/main/java/com/google/firebase/remoteconfig/ServerVersion.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,9 @@ public String getDescription() {
138138
/**
139139
* Gets the rollback source of the template.
140140
*
141-
* <p>The serverVersion number of the Remote Config template that has become the current serverVersion
142-
* due to a rollback. Only present if this serverVersion is the result of a rollback.
141+
* <p>The serverVersion number of the Remote Config template that has become the current
142+
* serverVersion due to a rollback. Only present if this serverVersion is the result of a
143+
* rollback.
143144
*
144145
* @return The rollback source of the template or null.
145146
*/

src/test/java/com/google/firebase/remoteconfig/ServerVersionTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ public void testEquality() {
6969

7070
final ServerVersion versionThree = ServerVersion.withDescription("abcd");
7171
final ServerVersion versionFour = ServerVersion.withDescription("abcd");
72-
final ServerVersion versionFive = new ServerVersion(new VersionResponse()).setDescription("abcd");
72+
final ServerVersion versionFive = new ServerVersion(new VersionResponse())
73+
.setDescription("abcd");
7374

7475
assertEquals(versionThree, versionFour);
7576
assertEquals(versionThree, versionFive);

0 commit comments

Comments
 (0)