mirror of
https://github.com/adolfintel/OpenPods.git
synced 2026-09-14 23:06:11 -04:00
Updated isFlipped
This commit is contained in:
@@ -233,7 +233,7 @@ public class PodsService extends Service {
|
||||
}
|
||||
|
||||
private boolean isFlipped (String str) {
|
||||
return ((Integer.parseInt("" + str.charAt(10), 16) / 2 ) % 2) == 0;
|
||||
return (Integer.parseInt("" + str.charAt(10), 16) & 0x02) == 0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user