ResolutionSyntax.java, [...]: Fixed typo (s/then/than/).

2003-12-27  Michael Koch  <konqueror@gmx.de>

	* javax/print/attribute/ResolutionSyntax.java,
	javax/print/attribute/SetOfIntegerSyntax.java,
	javax/print/attribute/Size2DSyntax.java,
	javax/print/attribute/standard/Copies.java,
	javax/print/attribute/standard/JobImpressions.java,
	javax/print/attribute/standard/JobMediaSheets.java,
	javax/print/attribute/standard/NumberOfDocuments.java,
	javax/print/attribute/standard/NumberOfInterveningJobs.java,
	javax/print/attribute/standard/PagesPerMinute.java,
	javax/print/attribute/standard/PagesPerMinuteColor.java,
	javax/print/attribute/standard/QueuedJobCount.java:
	Fixed typo (s/then/than/).

From-SVN: r75171
This commit is contained in:
Michael Koch 2003-12-27 14:21:08 +00:00 committed by Michael Koch
parent 8d531ab9b1
commit 5bd1d00e5c
12 changed files with 26 additions and 11 deletions

View File

@ -1,3 +1,18 @@
2003-12-27 Michael Koch <konqueror@gmx.de>
* javax/print/attribute/ResolutionSyntax.java,
javax/print/attribute/SetOfIntegerSyntax.java,
javax/print/attribute/Size2DSyntax.java,
javax/print/attribute/standard/Copies.java,
javax/print/attribute/standard/JobImpressions.java,
javax/print/attribute/standard/JobMediaSheets.java,
javax/print/attribute/standard/NumberOfDocuments.java,
javax/print/attribute/standard/NumberOfInterveningJobs.java,
javax/print/attribute/standard/PagesPerMinute.java,
javax/print/attribute/standard/PagesPerMinuteColor.java,
javax/print/attribute/standard/QueuedJobCount.java:
Fixed typo (s/then/than/).
2003-12-27 Guilhem Lavaux <guilhem@kaffe.org>
* java/rmi/Naming.java (lookup): Check if the first character of the

View File

@ -75,7 +75,7 @@ public abstract class ResolutionSyntax
if (crossFeedResolution < 1
|| feedResolution < 1
|| units < 1)
throw new IllegalArgumentException("no argument may be less then 1");
throw new IllegalArgumentException("no argument may be less than 1");
this.crossFeedResolution = crossFeedResolution * units;
this.feedResolution = feedResolution * units;

View File

@ -89,7 +89,7 @@ public abstract class SetOfIntegerSyntax
protected SetOfIntegerSyntax(int member)
{
if (member < 0)
throw new IllegalArgumentException("member may not be less then 0");
throw new IllegalArgumentException("member may not be less than 0");
this.members = new int[][]{{member, member}};
}

View File

@ -69,7 +69,7 @@ public abstract class Size2DSyntax implements Cloneable, Serializable
protected Size2DSyntax(float x, float y, int units)
{
if (x < 0.0f || y < 0.0f)
throw new IllegalArgumentException("x and/or y may not be less then 0");
throw new IllegalArgumentException("x and/or y may not be less than 0");
if (units < 1)
throw new IllegalArgumentException("units may not be less then 1");

View File

@ -61,7 +61,7 @@ public final class Copies extends IntegerSyntax
super(value);
if (value < 1)
throw new IllegalArgumentException("value may not be less then 1");
throw new IllegalArgumentException("value may not be less than 1");
}
/**

View File

@ -61,7 +61,7 @@ public final class JobImpressions extends IntegerSyntax
super(value);
if (value < 0)
throw new IllegalArgumentException("value may not be less then 0");
throw new IllegalArgumentException("value may not be less than 0");
}
/**

View File

@ -61,7 +61,7 @@ public class JobMediaSheets extends IntegerSyntax
super(value);
if (value < 0)
throw new IllegalArgumentException("value may not be less then 0");
throw new IllegalArgumentException("value may not be less than 0");
}
/**

View File

@ -60,7 +60,7 @@ public final class NumberOfDocuments extends IntegerSyntax
super(value);
if (value < 0)
throw new IllegalArgumentException("value may not be less then 0");
throw new IllegalArgumentException("value may not be less than 0");
}
/**

View File

@ -60,7 +60,7 @@ public final class NumberOfInterveningJobs extends IntegerSyntax
super(value);
if (value < 0)
throw new IllegalArgumentException("value may not be less then 0");
throw new IllegalArgumentException("value may not be less than 0");
}
/**

View File

@ -60,7 +60,7 @@ public final class PagesPerMinute extends IntegerSyntax
super(value);
if (value < 0)
throw new IllegalArgumentException("value may not be less then 0");
throw new IllegalArgumentException("value may not be less than 0");
}
/**

View File

@ -60,7 +60,7 @@ public final class PagesPerMinuteColor extends IntegerSyntax
super(value);
if (value < 0)
throw new IllegalArgumentException("value may not be less then 0");
throw new IllegalArgumentException("value may not be less than 0");
}
/**

View File

@ -60,7 +60,7 @@ public final class QueuedJobCount extends IntegerSyntax
super(value);
if (value < 0)
throw new IllegalArgumentException("value may not be less then 0");
throw new IllegalArgumentException("value may not be less than 0");
}
/**