Changeset 832


Ignore:
Timestamp:
02/04/14 23:15:12 (10 years ago)
Author:
davidb
Message:

Type cast needs to be an object (not a primitive) when stricter compile settings to javac are in effect

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/io/WebParser.java

    r828 r832  
    588588                                                                        + "scrollCounterHorizontal = scrollCounterHorizontal+1;");
    589589
    590                                                         rightReached.setValue((boolean) webEngine.executeScript("(window.pageXOffset + window.innerWidth >= document.documentElement.scrollWidth)"));
     590                                                        rightReached.setValue((Boolean) webEngine.executeScript("(window.pageXOffset + window.innerWidth >= document.documentElement.scrollWidth)"));
    591591
    592592                                                } catch (Exception e) {
Note: See TracChangeset for help on using the changeset viewer.