
io.pebbletemplates.boot.autoconfigure.AbstractPebbleConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pebble-spring-boot-starter Show documentation
Show all versions of pebble-spring-boot-starter Show documentation
Spring Boot starter for Pebble Template Engine
The newest version!
package io.pebbletemplates.boot.autoconfigure;
abstract class AbstractPebbleConfiguration {
protected String stripLeadingSlash(String value) {
if (value == null) {
return null;
}
if (value.startsWith("/")) {
return value.substring(1);
}
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy