1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-09-25 21:02:38 +00:00

Fix a bug that made some same-priority implementations not convert.

This commit is contained in:
2017-09-20 12:47:30 -07:00
parent fcd4694203
commit eb91a5b875
2 changed files with 6 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ public class PromotionException extends AbacusException {
* @param message the additional message to include with the error.
*/
public PromotionException(String message) {
super("Failed to promote number instances.", message);
super("Failed to promote number instances", message);
}
}