package com.github.agiledon.sisyphus.util;
public final class ResourceFilePath {
private ResourceFilePath() {}
public static String compensatePath(String resourceName) {
if (resourceName.startsWith("/")) {
return resourceName;
}
return "/" + resourceName;
}
public static String getAbsolutePath(String resourceName) {
return ResourceFilePath.class.getResource(compensatePath(resourceName)).getPath();
}
}