Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use correct version of AND.
  • Loading branch information
Michael Elsdörfer committed May 26, 2009
1 parent 0539b41 commit e135940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/elsdoerfer/wifilock/ToggleActivity.java
Expand Up @@ -31,7 +31,7 @@
public class ToggleActivity extends Activity {

static public boolean weArePreCupcake() {
return (VERSION.SDK.equals("1") | VERSION.SDK.equals("2"));
return (VERSION.SDK.equals("1") || VERSION.SDK.equals("2"));
}

@Override
Expand Down

0 comments on commit e135940

Please sign in to comment.