Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Commit

Permalink
change constructor of LiteralBooleanBinding
Browse files Browse the repository at this point in the history
  • Loading branch information
matthesrieke authored and bpross-52n committed Nov 13, 2013
1 parent 1f45445 commit e71d208
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -8,8 +8,8 @@ public class LiteralBooleanBinding extends AbstractLiteralDataBinding {
*/
private static final long serialVersionUID = -8476435383089241416L;
private transient boolean payload;

public LiteralBooleanBinding(boolean payload){
public LiteralBooleanBinding(Boolean payload){
this.payload = payload;
}

Expand Down

0 comments on commit e71d208

Please sign in to comment.