Skip to content

Commit 9ea92b2

Browse files
committed
Removes var type that caused build errors
1 parent 3654e3b commit 9ea92b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gma/src_java/com/google/firebase/gma/internal/cpp/AdViewHelper.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ public void show(final long callbackDataPtr) {
245245
if (activity == null) {
246246
return;
247247
}
248-
var unused = updatePopUpLocation(callbackDataPtr);
248+
boolean unused = updatePopUpLocation(callbackDataPtr);
249249
}
250250

251251
/** Pauses the {@link AdView}. */
@@ -282,7 +282,7 @@ public void moveTo(final long callbackDataPtr, int x, int y) {
282282
desiredX = x;
283283
desiredY = y;
284284
if (popUp != null) {
285-
var unused = updatePopUpLocation(callbackDataPtr);
285+
boolean unused = updatePopUpLocation(callbackDataPtr);
286286
}
287287
}
288288
}
@@ -297,7 +297,7 @@ public void moveTo(final long callbackDataPtr, final int position) {
297297
shouldUseXYForPosition = false;
298298
desiredPosition = position;
299299
if (popUp != null) {
300-
var unused = updatePopUpLocation(callbackDataPtr);
300+
boolean unused = updatePopUpLocation(callbackDataPtr);
301301
}
302302
}
303303
}

0 commit comments

Comments
 (0)