In the copyright portion of the Oracle v. Google case currently going on regarding Google’s Android Operating System, the jury found that Google had infringed on 9 lines of code out of the 1.2 million lines in question. As best as I can determine, these are those 9 lines:
private static void rangeCheck(int arrayLen, int fromIndex, int toIndex) {
if (fromIndex > toIndex)
throw new IllegalArgumentException("fromIndex(" + fromIndex +
") > toIndex(" + toIndex+")");
if (fromIndex < 0)
throw new ArrayIndexOutOfBoundsException(fromIndex);
if (toIndex > arrayLen)
throw new ArrayIndexOutOfBoundsException(toIndex);
}
The jury couldn’t agree on whether or not the infringement was enough to justify damages be awarded to Oracle.