We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e4abf4 commit c0b9b26Copy full SHA for c0b9b26
src/test/java/org/apache/ibatis/builder/xml/dynamic/ExpressionEvaluatorTest.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2009-2023 the original author or authors.
+ * Copyright 2009-2024 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -76,7 +76,7 @@ void shouldReturnFalseIfZero() {
76
void shouldReturnFalseIfZeroWithScale() {
77
class Bean {
78
@SuppressWarnings("unused")
79
- public double d = 0.0d;
+ public double d = 0.0D;
80
}
81
assertFalse(evaluator.evaluateBoolean("d", new Bean()));
82
0 commit comments