package lombok.core.handlers; import java.util.Arrays; import java.util.List; import lombok.core.runtimeDependencies.RuntimeDependencyInfo; /* loaded from: com.discord-118107.apk:lombok/core/handlers/SneakyThrowsAndCleanupDependencyInfo.SCL.lombok */ public class SneakyThrowsAndCleanupDependencyInfo implements RuntimeDependencyInfo { @Override // lombok.core.runtimeDependencies.RuntimeDependencyInfo public List getRuntimeDependencies() { return Arrays.asList("lombok/Lombok.class"); } @Override // lombok.core.runtimeDependencies.RuntimeDependencyInfo public List getRuntimeDependentsDescriptions() { return Arrays.asList("@SneakyThrows (only when delomboking - using @SneakyThrows in code that is compiled with lombok on the classpath does not create the dependency)", "@Cleanup (only when delomboking - using @Cleanup in code that is compiled with lombok on the classpath does not create the dependency)"); } }