Javadoc fixes.

This commit is contained in:
Michael Lipp 2025-01-30 22:04:41 +01:00
parent 99c96e44c3
commit 29dd6aab82
3 changed files with 3 additions and 5 deletions

View file

@ -64,7 +64,6 @@ public class PoolMonitor extends
* Instantiates a new VM pool manager. * Instantiates a new VM pool manager.
* *
* @param componentChannel the component channel * @param componentChannel the component channel
* @param channelManager the channel manager
*/ */
public PoolMonitor(Channel componentChannel) { public PoolMonitor(Channel componentChannel) {
super(componentChannel, K8sDynamicModel.class, super(componentChannel, K8sDynamicModel.class,

View file

@ -111,12 +111,12 @@ public class VmDefUpdater extends Component {
/** /**
* Update condition. * Update condition.
* *
* @param apiClient the api client * @param from the VM definition
* @param from the vM definition
* @param status the current status * @param status the current status
* @param type the condition type * @param type the condition type
* @param state the new state * @param state the new state
* @param reason the reason for the change * @param reason the reason for the change
* @param message the message
*/ */
protected void updateCondition(VmDefinitionModel from, JsonObject status, protected void updateCondition(VmDefinitionModel from, JsonObject status,
String type, boolean state, String reason, String message) { String type, boolean state, String reason, String message) {

View file

@ -685,8 +685,7 @@ public class VmAccess extends FreeMarkerConlet<VmAccess.ResourceModel> {
* On vm pool changed. * On vm pool changed.
* *
* @param event the event * @param event the event
* @param channel the channel * @throws InterruptedException the interrupted exception
* @throws InterruptedException
*/ */
@Handler(namedChannels = "manager") @Handler(namedChannels = "manager")
@SuppressWarnings("PMD.AvoidInstantiatingObjectsInLoops") @SuppressWarnings("PMD.AvoidInstantiatingObjectsInLoops")