Skip to content

Commit af6d927

Browse files
author
volker
committed
missing space
1 parent ca3e30d commit af6d927

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/inet/sass/function/TransparencyModificationFunctionGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,15 @@ private void checkParameters(LexicalUnitImpl function,
7979
.isHsla(color.getContainedValue()))) {
8080
throw new ParseException("The function "
8181
+ function.getFunctionName()
82-
+ "requires a valid color as its first parameter", function);
82+
+ " requires a valid color as its first parameter", function);
8383
}
8484
SassListItem amountItem = getParam(args, 1);
8585
if (!(amountItem instanceof LexicalUnitImpl)
8686
|| !LexicalUnitImpl.checkLexicalUnitType(amountItem,
8787
LexicalUnitImpl.SAC_INTEGER, LexicalUnitImpl.SAC_REAL)) {
8888
throw new ParseException("The function "
8989
+ function.getFunctionName()
90-
+ "requires a number as its second parameter", function);
90+
+ " requires a number as its second parameter", function);
9191
}
9292
double amount = amountItem.getContainedValue().getDoubleValue();
9393
if (amount < 0.0 || amount > 1.0) {

0 commit comments

Comments
 (0)