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

org.bidib.wizard.mvc.pomupdate.controller.PomUpdateUtils Maven / Gradle / Ivy

There is a newer version: 2.0.0-M1
Show newest version
package org.bidib.wizard.mvc.pomupdate.controller;

public class PomUpdateUtils {

    public static int calculateResendPacketCount(int pomRepeat, int minPomRepeat) {

        int resendPacketCount = (minPomRepeat / pomRepeat) + ((minPomRepeat % pomRepeat) > 0 ? 1 : 0);
        return resendPacketCount;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy