package lombok.core.configuration; import lombok.eclipse.handlers.EclipseHandlerUtil; /* loaded from: com.discord-118107.apk:lombok/core/configuration/ConfigurationProblemReporter.SCL.lombok */ public interface ConfigurationProblemReporter { public static final ConfigurationProblemReporter CONSOLE = new AnonymousClass1(); /* renamed from: lombok.core.configuration.ConfigurationProblemReporter$1 reason: invalid class name */ /* loaded from: com.discord-118107.apk:lombok/core/configuration/ConfigurationProblemReporter$1.SCL.lombok */ class AnonymousClass1 implements ConfigurationProblemReporter { AnonymousClass1() { } @Override // lombok.core.configuration.ConfigurationProblemReporter public void report(String str, String str2, int i, CharSequence charSequence) { try { EclipseHandlerUtil.warning(String.format("%s (%s:%d)", str2, str, Integer.valueOf(i)), null); } catch (Throwable unused) { } System.err.printf("%s (%s:%d)\n", str2, str, Integer.valueOf(i)); } } void report(String str, String str2, int i, CharSequence charSequence); }