All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.pebbletemplates.boot.autoconfigure.AbstractPebbleConfiguration Maven / Gradle / Ivy

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