Skip to content

Commit

Permalink
Tiny code style tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cervator committed Nov 5, 2016
1 parent 4153af9 commit 79091c6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,17 @@ public void bindSelectable(Binding<Boolean> binding) {
selectable = binding;
}

public boolean isInteractive() { return interactive.get(); }
public boolean isInteractive() {
return interactive.get();
}

public boolean isSelectable() {
return selectable.get();
}

public void setInteractive(boolean value) { interactive.set(value); }
public void setInteractive(boolean value) {
interactive.set(value);
}

public void setSelectable(boolean value) {
selectable.set(value);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2014 MovingBlocks
* Copyright 2016 MovingBlocks
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -39,8 +39,6 @@
import java.util.ArrayList;
import java.util.List;

/**
*/
public class ItemIcon extends CoreWidget {

@LayoutConfig
Expand Down

0 comments on commit 79091c6

Please sign in to comment.