Skip to content

Commit 04a42c8

Browse files
committed
Remove the nullability specifier since the return signature has changed to be Void.
1 parent c866e56 commit 04a42c8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

firebase-perf/src/main/java/com/google/firebase/perf/metrics/validator/PerfMetricValidator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ public static String validateMetricName(@Nullable String str) {
139139
* @return null if the entry can be used as an Attribute, if not, an error string explaining why
140140
* it can't be used.
141141
*/
142-
@Nullable
143142
public static void validateAttribute(@NonNull String key, @NonNull String value) {
144143
if (key == null || key.length() == 0) {
145144
throw new IllegalArgumentException("Attribute key must not be null or empty");

0 commit comments

Comments
 (0)