Oracle/Google jury finds Google infringed SSO but hangs on fair use
1–10 of 37 posts
Re: Oracle/Google jury finds Google infringed SSO but hangs on fair use
#2The rangeCheck method in TimSort.java and ComparableTimSort.Java YES, infringing....
Re: Oracle/Google jury finds Google infringed SSO but hangs on fair use
#3There have been enough comments on what this means, whats going to happen next, etc. Something that is bothering me. Juries are meant to infuse some common reasoning into the law. And still, you get decisions like this: The rangeCheck method in TimSort.java and ComparableTimSort.Java YES, infringing....
This sort of trial should be conducted in the modern style of civil law countries, but that would require a constitutional amendment.
Re: Oracle/Google jury finds Google infringed SSO but hangs on fair use
#4There have been enough comments on what this means, whats going to happen next, etc. Something that is bothering me. Juries are meant to infuse some common reasoning into the law. And still, you get decisions like this: The rangeCheck method in TimSort.java and ComparableTimSort.Java YES, infringing....
private static void rangeCheck(int arrayLen, int fromIndex, int toIndex) {
if (fromIndex > toIndex)
throw new IllegalArgumentException("fromIndex(" + fromIndex +
") > toIndex(" + toIndex+")");
if (fromIndex arrayLen)
throw new ArrayIndexOutOfBoundsException(toIndex);
}
From Google:private static void rangeCheck(int arrayLen, int fromIndex, int toIndex) {
if (fromIndex > toIndex)
throw new IllegalArgumentException("fromIndex(" + fromIndex +
") > toIndex(" + toIndex+")");
if (fromIndex arrayLen)
throw new ArrayIndexOutOfBoundsException(toIndex);
}
}Open and shut case. /s
Re: Oracle/Google jury finds Google infringed SSO but hangs on fair use
#5There have been enough comments on what this means, whats going to happen next, etc. Something that is bothering me. Juries are meant to infuse some common reasoning into the law. And still, you get decisions like this: The rangeCheck method in TimSort.java and ComparableTimSort.Java YES, infringing....
Re: Oracle/Google jury finds Google infringed SSO but hangs on fair use
#6There have been enough comments on what this means, whats going to happen next, etc. Something that is bothering me. Juries are meant to infuse some common reasoning into the law. And still, you get decisions like this: The rangeCheck method in TimSort.java and ComparableTimSort.Java YES, infringing....
From OpenJDK: private static void rangeCheck(int arrayLen, int fromIndex, int toIndex) { if (fromIndex > toIndex) throw new IllegalArgumentException("fromIndex(" + fromIndex + ") > toIndex(" + toIndex+")"); if (fromIndex arrayLen) throw new ArrayIndexOutOfBoundsException(toIndex); } From Google: private static void rangeCheck(int arrayLen, int fromIndex, int toIndex) { if (fromIndex > toIndex) throw new IllegalArgume…
Re: Oracle/Google jury finds Google infringed SSO but hangs on fair use
#7There have been enough comments on what this means, whats going to happen next, etc. Something that is bothering me. Juries are meant to infuse some common reasoning into the law. And still, you get decisions like this: The rangeCheck method in TimSort.java and ComparableTimSort.Java YES, infringing....
From OpenJDK: private static void rangeCheck(int arrayLen, int fromIndex, int toIndex) { if (fromIndex > toIndex) throw new IllegalArgumentException("fromIndex(" + fromIndex + ") > toIndex(" + toIndex+")"); if (fromIndex arrayLen) throw new ArrayIndexOutOfBoundsException(toIndex); } From Google: private static void rangeCheck(int arrayLen, int fromIndex, int toIndex) { if (fromIndex > toIndex) throw new IllegalArgume…
Re: Oracle/Google jury finds Google infringed SSO but hangs on fair use
#8Earlier quoted context omitted.
From OpenJDK: private static void rangeCheck(int arrayLen, int fromIndex, int toIndex) { if (fromIndex > toIndex) throw new IllegalArgumentException("fromIndex(" + fromIndex + ") > toIndex(" + toIndex+")"); if (fromIndex arrayLen) throw new ArrayIndexOutOfBoundsException(toIndex); } From Google: private static void rangeCheck(int arrayLen, int fromIndex, int toIndex) { if (fromIndex > toIndex) throw new IllegalArgume…
To be blatantly honest, that is exactly what I'd write. The implementation is trivial and obvious therefore the probability of them being the same is high.
Re: Oracle/Google jury finds Google infringed SSO but hangs on fair use
#9There have been enough comments on what this means, whats going to happen next, etc. Something that is bothering me. Juries are meant to infuse some common reasoning into the law. And still, you get decisions like this: The rangeCheck method in TimSort.java and ComparableTimSort.Java YES, infringing....
Re: Oracle/Google jury finds Google infringed SSO but hangs on fair use
#10There have been enough comments on what this means, whats going to happen next, etc. Something that is bothering me. Juries are meant to infuse some common reasoning into the law. And still, you get decisions like this: The rangeCheck method in TimSort.java and ComparableTimSort.Java YES, infringing....
Josh Bloch testified that he copied this function. http://www.groklaw.net/articlebasic.php?story=20120419221941...