Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Android Google Java Oracle Patents The Courts

Oracle Not Satisfied With Potential $150,000; Goes Against Judge's Warning 234

bobwrit writes with news about how the monetary damages in the Google v. Oracle case might shake out. On Thursday, Judge Alsup told Oracle the most it could expect for statutory damages was a flat $150,000, a far cry from the $6.1 billion Oracle wanted in 2011, or even the $2.8 million offered by Google as a settlement. However, Oracle still thinks it can go after infringed profits, even though Judge Alsup specifically warned its lawyers they were making a mistake. He said, "It's the height of ridiculousness to say for those 9 lines you get hundreds of millions." Groklaw has a detailed post about today's events.
This discussion has been archived. No new comments can be posted.

Oracle Not Satisfied With Potential $150,000; Goes Against Judge's Warning

Comments Filter:
  • by Xtifr ( 1323 ) on Friday May 11, 2012 @06:08PM (#39973809) Homepage

    I'm thinking that $9 (one dollar for each copied line) sounds like a nice number. :)

  • by Githaron ( 2462596 ) on Friday May 11, 2012 @06:10PM (#39973837)
    Not only that but the function is so simple [notavailablein.ca] that it could have been a complete accident.
  • Obviousness (Score:4, Informative)

    by markkezner ( 1209776 ) on Friday May 11, 2012 @06:23PM (#39973969)

    I presume the 9 lines in question refer to TimSort.rangeCheck() [oswego.edu].

    Have you ever looked at it? If I had to implement that method, I probably would have done it the exact same way.

  • by Anonymous Coward on Friday May 11, 2012 @06:25PM (#39973983)

    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 IllegalArgumentException("fromIndex(" + fromIndex +
                                                  ") > toIndex(" + toIndex+")");

                    if (fromIndex arrayLen)
                            throw new ArrayIndexOutOfBoundsException(toIndex);

            }

    }

  • by adisakp ( 705706 ) on Friday May 11, 2012 @06:25PM (#39973989) Journal
    Wait - is this it??? [brainbits.ca]
  • by DarthBling ( 1733038 ) on Friday May 11, 2012 @06:29PM (#39974037)

    Shamelessly stolen from Githaron's post [slashdot.org]

    http://notavailablein.ca/2012/05/googles-infringement-against-oracle-9-lines-of-code/ [notavailablein.ca]

    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);
    }

  • by dmesg0 ( 1342071 ) on Friday May 11, 2012 @06:31PM (#39974059)

    Hmm, slashdot doesn't won't infringing code to be posted, it removed a few lines during posting.
    Here's the original: http://news.ycombinator.com/item?id=3951480 [ycombinator.com]

  • But Oracle said... (Score:3, Informative)

    by inode_buddha ( 576844 ) on Friday May 11, 2012 @07:09PM (#39974369) Journal

    But Oracle said this isn't about money! In court no less!

  • by jimshatt ( 1002452 ) on Friday May 11, 2012 @07:10PM (#39974377)
    Those checks aren't run because an exception is thrown before that.
  • by DVega ( 211997 ) on Friday May 11, 2012 @07:18PM (#39974455)
    Not only simple and small. The author of both copies is the same person: Josh Bloch. He wrote the original lines while working for Sun, and repeated the same code while working for Google. So, according the law, Josh Bloch plagiarized himself
  • Bad Summary (Score:5, Informative)

    by dlsmith ( 993896 ) on Friday May 11, 2012 @07:56PM (#39974757)
    The larger figures quoted ($6.1 billion) refer to the estimated total for all infringement claims. The $150,000 discussed today is for one claim. Of course, the whole case doesn't revolve around the nine lines of code. The big (unresolved) questions are about copyright of the APIs and infringement of patents.
  • by DragonWriter ( 970822 ) on Friday May 11, 2012 @08:04PM (#39974807)

    When the RIAA sues, typically they sue over a large number of different copyright protected works; with up to $150,000 in statutory damages available per work without proof of actual damages or infringers profits, they are able to rack up large statutory damage awards this way.

    In the charge at issue here, Oracle has gotten a verdict on Google infringing a single work for which they have provided no evidence of actual damages or infringers profits. With up to $150,000 in statutory damages available per work, that gives them $150,000 in statutory damages available.

    Its worth noting that the judge isn't informing Oracle that their damages are minimal. He has informed Oracle that they didn't bother presenting evidence on damages or infringers profits from the infringement of the work at issue, and since they didn't do that, there is no evidence in the case on which to find anything other than statutory damages.

    The difference here is not a problem with the court system (I'm not saying that the court system does not, in many ways, favor the wealthier litigant, but the difference in the damages available in the two kinds of cases at issue in this subthread isn't actually that kind of issue.)

    If there is a problem, its with the way copyright statutory damages work (either in being too generous in the kinds of cases the RIAA brings or being too stingy in the kind of case Oracle has brought.) But its not the the people targetted by the RIAA have succeeded less well in cases where the facts at issue were parallel to those in Oracle v. Google, its that the legal rules provide larger awards without proof of actual damages when lots of works are at issue than when fewer works are at issue.

  • by Anthony Mouse ( 1927662 ) on Saturday May 12, 2012 @11:45AM (#39979153)

    He wrote it for Sun/Oracle while working for Sun/Oracle, hence the copyright lies with Sun/Oracle.

    Lies. This is from Groklaw's coverage of his testimony [groklaw.net]:

    Q. You left Sun and joined Google in 2004. What did you do at Google?
    A. I ported existing Google infrastructure that was primarily accessible from C++ so that it was accessible to Java. I joined the Android team in December 2008 or January 2009. Android had already been released, and phones were in the market.

    ...

    Q. Do you know of the existence of other rangecheck() functions?
    A. Yes, there's one in arrays.java. I wrote it. [Timsort: from Tim Peters, and originally in Python. The Java implementation was a port.]
    Q. Where did you get the Python version of Timsort? Was it open source [this was 2007, pre-Android]?
    A. Yes, Guido [van Rossum] pointed me to it, it's under a permissive open-source license.
    Q. What did you want to do with your Java Timsort?
    A. Put it into OpenJDK (an open implentation of the SE platform).
    Q. Who controlled OpenJDK?
    A. Sun.
    Q. How does someone contribute to OpenJDK, and had you done it before?
    A. Yes. [Discussion about source repositories, and Doug Lee at Oswego, NY].
    Q. If you worked for Google, why would you contribute to Sun's JDK?
    A. Java is important to me; it's given me a lot.
    Q. Why did you use the same rangecheck() function in Timsort as was in arrays.java?
    A. It's good software engineering to reuse an existing function.
    Q. But why use the exact same code?
    A. I copied rangecheck() as a temporary measure, assuming this would be merged into arrays.java and my version of rangecheck() would go away.
    [Discussion of Timsort dates and Android work dates.]
    Q. Was Timsort accepted and added into OpenJDK?
    A. Yes.

    In other words, a Google engineer, working at Google, wrote a function and contributed it to Java (for free). Now Oracle is trying to sue over it because of that copyright assignment, and claiming that the freely contributed code is hugely valuable and that the contributor therefore owes them big money for using it. Even if this is technically legal for them to sue over, Oracle really deserves to DIAF over this.

UNIX is hot. It's more than hot. It's steaming. It's quicksilver lightning with a laserbeam kicker. -- Michael Jay Tucker

Working...