protected PostfixedApplicationResource()

in tiles-request-api/src/main/java/org/apache/tiles/request/locale/PostfixedApplicationResource.java [100:110]


    protected PostfixedApplicationResource(String path, Locale locale) {
        int suffixIndex = path.lastIndexOf('.');
        if (suffixIndex < 0) {
            suffix = "";
            pathPrefix = path;
        } else {
            pathPrefix = path.substring(0, suffixIndex);
            suffix = path.substring(suffixIndex);
        }
        this.locale = locale;
    }