Skip to content

Commit

Permalink
Fix rawTypes errors in Android embedding classes (flutter#9326)
Browse files Browse the repository at this point in the history
  • Loading branch information
tvolkert authored Jun 14, 2019
1 parent bf0def6 commit ace5d59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ protected void writeValue(ByteArrayOutputStream stream, Object value) {
stream.write(MAP);
final Map<?, ?> map = (Map) value;
writeSize(stream, map.size());
for (final Entry entry: map.entrySet()) {
for (final Entry<?, ?> entry: map.entrySet()) {
writeValue(stream, entry.getKey());
writeValue(stream, entry.getValue());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ static class WindowManagerHandler implements InvocationHandler {
public WindowManager getWindowManager() {
return (WindowManager) Proxy.newProxyInstance(
WindowManager.class.getClassLoader(),
new Class[] { WindowManager.class },
new Class<?>[] { WindowManager.class },
this
);
}
Expand Down

0 comments on commit ace5d59

Please sign in to comment.