Skip to content

Commit

Permalink
fix javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Jul 8, 2024
1 parent 06c4b13 commit c38ed76
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/main/java/io/wcm/wcm/commons/controller/VersionInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ private void activate() {
this.bundles = getFilteredBundles(filterPatterns);
}

/**
* @return Bundles
*/
public Collection<BundleInfo> getBundles() {
return this.bundles;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/wcm/wcm/commons/ui/DenyWcmDisabled.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class DenyWcmDisabled {
private int errorCode;

@PostConstruct
protected void activate() throws IOException {
private void activate() throws IOException {
if (wcmMode == WCMMode.DISABLED) {
response.sendError(errorCode);
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/wcm/wcm/commons/ui/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
/**
* Sling model classes for UI views.
*/
@org.osgi.annotation.versioning.Version("1.0.1")
@org.osgi.annotation.versioning.Version("1.1.0")
package io.wcm.wcm.commons.ui;

0 comments on commit c38ed76

Please sign in to comment.