Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ private File parentBomFile(Node bom) {

private static final class Node {

protected final XPath xpath;
private final XPath xpath;

private final org.w3c.dom.Node delegate;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ BuildProperties buildProperties() throws Exception {
loadFrom(this.properties.getBuild().getLocation(), "build", this.properties.getBuild().getEncoding()));
}

protected Properties loadFrom(Resource location, String prefix, Charset encoding) throws IOException {
private Properties loadFrom(Resource location, String prefix, Charset encoding) throws IOException {
prefix = prefix.endsWith(".") ? prefix : prefix + ".";
Properties source = loadSource(location, encoding);
Properties target = new Properties();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ public Class<? extends MapPropertySource> getSourceClass() {
return this.sourceClass;
}

protected String applySuffix(String name) {
private String applySuffix(String name) {
return (this.suffix != null) ? name + "-" + this.suffix : name;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public void format(LogEvent event, StringBuilder toAppendTo) {
}
}

protected void appendAnsiString(StringBuilder toAppendTo, String in, AnsiElement element) {
private void appendAnsiString(StringBuilder toAppendTo, String in, AnsiElement element) {
toAppendTo.append(AnsiOutput.toString(element, in));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private void createFileIfNecessary(File file) throws IOException {
}
}

protected Properties createBuildInfo(ProjectDetails project) {
private Properties createBuildInfo(ProjectDetails project) {
Properties properties = CollectionFactory.createSortedProperties(true);
addIfHasValue(properties, "build.group", project.getGroup());
addIfHasValue(properties, "build.artifact", project.getArtifact());
Expand Down
Loading