package com.unity3d.services.core.device.reader; import java.util.Map; /* loaded from: classes2.dex */ public class DeviceInfoReaderWithExtras implements IDeviceInfoReader { private final IDeviceInfoReader _deviceInfoReader; private final Map _extras; public DeviceInfoReaderWithExtras(IDeviceInfoReader iDeviceInfoReader, Map map) { this._deviceInfoReader = iDeviceInfoReader; this._extras = map; } @Override // com.unity3d.services.core.device.reader.IDeviceInfoReader public Map getDeviceInfoData() { Map map; Map deviceInfoData = this._deviceInfoReader.getDeviceInfoData(); if (deviceInfoData != null && (map = this._extras) != null) { deviceInfoData.putAll(map); } return deviceInfoData; } }