package com.ironsource.sdk.utils;

import java.util.HashMap;
import java.util.Map;
/* loaded from: classes4.dex */
public class IronSourceQaProperties {

    /* renamed from: a  reason: collision with root package name */
    private static IronSourceQaProperties f3058a;
    private static Map<String, String> b = new HashMap();

    private IronSourceQaProperties() {
    }

    public static IronSourceQaProperties getInstance() {
        if (f3058a == null) {
            f3058a = new IronSourceQaProperties();
        }
        return f3058a;
    }

    public static boolean isInitialized() {
        return f3058a != null;
    }

    public Map<String, String> getParameters() {
        return b;
    }

    public void setQaParameter(String str, String str2) {
        if (str == null || str2 == null) {
            return;
        }
        b.put(str, str2);
    }
}
