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

@ -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}};
}