Skip to content

Commit

Permalink
HV-1164 remove occurences of this. for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
bayerls authored and gsmet committed Dec 7, 2016
1 parent 3ffafbc commit fe24031
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -228,8 +228,8 @@ public Object getExecutableReturnValue() {

@Override
public <C> C getDynamicPayload(Class<C> type) {
if ( dynamicPayload != null && type.isAssignableFrom( this.dynamicPayload.getClass() ) ) {
return type.cast( this.dynamicPayload );
if ( dynamicPayload != null && type.isAssignableFrom( dynamicPayload.getClass() ) ) {
return type.cast( dynamicPayload );
}
else {
return null;
Expand Down

0 comments on commit fe24031

Please sign in to comment.