spring-projects / spring-plugin

Apache License 2.0
441 stars 117 forks source link

Typo in SimplePluginMetadata equals method #11

Closed eserss closed 9 years ago

eserss commented 9 years ago

Hi Oliver,

I found typo in SimplePluginMetadata equals method:

boolean sameName = nullSafeEquals(this.getName(), that.getName()); boolean sameVersion = nullSafeEquals(this.getName(), that.getName());

and must be:

boolean sameName = nullSafeEquals(this.getName(), that.getName()); boolean sameVersion = nullSafeEquals(this.getVersion(), that.getVersion());

Thanks