Skip to content

Commit 45cea61

Browse files
authored
Merge pull request #870 from msysyamamoto/fixtypo
Fix typo
2 parents 3bcf467 + 7dd05a3 commit 45cea61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apache/ibatis/reflection/Reflector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ private void resolveGetterConflicts(Map<String, List<Method>> conflictingGetters
129129
if (methodType.equals(getterType)) {
130130
throw new ReflectionException("Illegal overloaded getter method with ambiguous type for property "
131131
+ propName + " in class " + firstMethod.getDeclaringClass()
132-
+ ". This breaks the JavaBeans " + "specification and can cause unpredicatble results.");
132+
+ ". This breaks the JavaBeans " + "specification and can cause unpredictable results.");
133133
} else if (methodType.isAssignableFrom(getterType)) {
134134
// OK getter type is descendant
135135
} else if (getterType.isAssignableFrom(methodType)) {
@@ -138,7 +138,7 @@ private void resolveGetterConflicts(Map<String, List<Method>> conflictingGetters
138138
} else {
139139
throw new ReflectionException("Illegal overloaded getter method with ambiguous type for property "
140140
+ propName + " in class " + firstMethod.getDeclaringClass()
141-
+ ". This breaks the JavaBeans " + "specification and can cause unpredicatble results.");
141+
+ ". This breaks the JavaBeans " + "specification and can cause unpredictable results.");
142142
}
143143
}
144144
addGetMethod(propName, getter);

0 commit comments

Comments
 (0)