com.nike.riposte.util.MatcherUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riposte-spi Show documentation
Show all versions of riposte-spi Show documentation
Riposte module riposte-spi
package com.nike.riposte.util;
@SuppressWarnings("WeakerAccess")
public class MatcherUtil {
// Intentionally protected - use the static methods
protected MatcherUtil() { /* do nothing */ }
public static String stripEndSlash(String path) {
if (path.endsWith("/")) {
return path.substring(0, path.length() - 1);
} else {
return path;
}
}
}