Commit b8aa2d58 authored by Julian Oppermann's avatar Julian Oppermann
Browse files

Fix minor copy&paste errors.

parent cdd49cbd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ public class FeasibleMinIIProperty extends Property {
			throw new IllegalArgumentException("The backedge delay must be greater than or equal to zero.");
		}
		if (backedgeDistance <= 0) {
			throw new IllegalArgumentException("The backedge delay must be greater than zero.");
			throw new IllegalArgumentException("The backedge distance must be greater than zero.");
		}

		this.minII = minII;
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ public class InfeasibleMinIIProperty extends Property {
			throw new IllegalArgumentException("The backedge delay must be greater than or equal to zero.");
		}
		if (backedgeDistance <= 0) {
			throw new IllegalArgumentException("The backedge delay must be greater than zero.");
			throw new IllegalArgumentException("The backedge distance must be greater than zero.");
		}

		this.minII = minII;