AdaptiveIconView icon indicating copy to clipboard operation
AdaptiveIconView copied to clipboard

Question: is this part really correct?

Open AndroidDeveloperLB opened this issue 4 years ago • 0 comments

This seems weird:

    private static float[] getFloats(String s) {
        if (s.charAt(0) == 'z' | s.charAt(0) == 'Z') {
            return new float[0];
        }

I think you meant to use "||" and not a single one... Where did you get this code from? Maybe it should get updated... Not even sure what this means with a single one...

AndroidDeveloperLB avatar May 01 '20 10:05 AndroidDeveloperLB