package com.ironsource.sdk.utils; import java.util.HashMap; import java.util.Map; /* loaded from: classes4.dex */ public class IronSourceQaProperties { private static IronSourceQaProperties a; private static Map b = new HashMap(); private IronSourceQaProperties() { } public static IronSourceQaProperties getInstance() { if (a == null) { a = new IronSourceQaProperties(); } return a; } public static boolean isInitialized() { return a != null; } public Map getParameters() { return b; } public void setQaParameter(String str, String str2) { if (str == null || str2 == null) { return; } b.put(str, str2); } }