Skip to content

Commit

Permalink
Typo fix in error message (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
gunnarmorling authored Dec 28, 2020
1 parent d841b97 commit 9b745b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public Clazz( Clazz defA, Clazz defB )
if ( !Objects.equals(defA.superClass, defB.superClass ) )
{
// nothing we can do... this is a breaking change
throw new ClassCastException( "Cannot merger class " + defB.name + " as it has changed superclass:" );
throw new ClassCastException( "Cannot merge class " + defB.name + " as it has changed superclass:" );
}
Set<String> superInterfaces = new HashSet<String>();
if ( defA.superInterfaces != null )
Expand Down

0 comments on commit 9b745b8

Please sign in to comment.