discord-jadx/app/src/main/java/lombok/core/handlers/SneakyThrowsAndCleanupDepen...

18 lines
975 B
Java
Raw Normal View History

2022-03-07 09:34:54 +00:00
package lombok.core.handlers;
import java.util.Arrays;
import java.util.List;
import lombok.core.runtimeDependencies.RuntimeDependencyInfo;
2022-03-09 08:57:56 +00:00
/* loaded from: com.discord-118107.apk:lombok/core/handlers/SneakyThrowsAndCleanupDependencyInfo.SCL.lombok */
2022-03-07 09:34:54 +00:00
public class SneakyThrowsAndCleanupDependencyInfo implements RuntimeDependencyInfo {
@Override // lombok.core.runtimeDependencies.RuntimeDependencyInfo
public List<String> getRuntimeDependencies() {
return Arrays.asList("lombok/Lombok.class");
}
@Override // lombok.core.runtimeDependencies.RuntimeDependencyInfo
public List<String> 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)");
}
}