Skip to content

Commit fadc2d3

Browse files
authored
Remove unused AutoValue dependency. (#392)
Remove unused AutoValue dependency (and remove Java 8 API dependency which was accidentally introduced).
1 parent fa7c858 commit fadc2d3

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

pom.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -321,13 +321,6 @@
321321
<configuration>
322322
<source>1.7</source>
323323
<target>1.7</target>
324-
<annotationProcessorPaths>
325-
<path>
326-
<groupId>com.google.auto.value</groupId>
327-
<artifactId>auto-value</artifactId>
328-
<version>1.7</version>
329-
</path>
330-
</annotationProcessorPaths>
331324
</configuration>
332325
</plugin>
333326
<plugin>
@@ -433,11 +426,6 @@
433426
</dependency>
434427

435428
<!-- Utilities -->
436-
<dependency>
437-
<groupId>com.google.auto.value</groupId>
438-
<artifactId>auto-value-annotations</artifactId>
439-
<version>1.7</version>
440-
</dependency>
441429
<dependency>
442430
<groupId>com.google.guava</groupId>
443431
<artifactId>guava</artifactId>

src/main/java/com/google/firebase/auth/FirebaseUserManager.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
import com.google.api.client.json.JsonObjectParser;
3434
import com.google.api.client.util.Key;
3535
import com.google.common.annotations.VisibleForTesting;
36+
import com.google.common.base.Joiner;
3637
import com.google.common.base.Strings;
3738
import com.google.common.collect.ImmutableList;
3839
import com.google.common.collect.ImmutableMap;
@@ -271,7 +272,7 @@ private static String generateMask(Map<String, Object> properties) {
271272
// since we do not currently generate masks for any properties with nested values. When it
272273
// comes time to implement this, we can check if a property has nested properties by checking
273274
// if it is an instance of the Map class.
274-
return String.join(",", ImmutableSortedSet.copyOf(properties.keySet()));
275+
return Joiner.on(",").join(ImmutableSortedSet.copyOf(properties.keySet()));
275276
}
276277

277278
void deleteTenant(String tenantId) throws FirebaseAuthException {

0 commit comments

Comments
 (0)