Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix IllegalArgumentException on JDK 1.8.0_60 #914

Closed
wants to merge 6 commits into from
Closed

Fix IllegalArgumentException on JDK 1.8.0_60 #914

wants to merge 6 commits into from

Commits on Sep 30, 2015

  1. Fix IllegalArgumentException on JDK 1.8.0_60

    To determine actual types of parameters for class passed in as lambda to
    step definition, code uses old Sun ConstantPool to look for dynamic
    linking data.  Previously these values were found at index size()-2;
    however as of 1.8.0_60 the location appears to have changed to size()-3.
    Given that the following indexes appear to have empty/invalid values,
    instead iterate downward from end to find first valid value and use for
    parameter type determination.
    dbcowboy committed Sep 30, 2015
    Configuration menu
    Copy the full SHA
    046d98c View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2015

  1. #914 Correct with Code Standards

    Conform to project coding standards regarding tabs, line feeds and
    encoding.
    dbcowboy committed Oct 2, 2015
    Configuration menu
    Copy the full SHA
    dd34092 View commit details
    Browse the repository at this point in the history
  2. Revert "#914 Correct with Code Standards"

    This reverts commit dd34092.
    dbcowboy committed Oct 2, 2015
    Configuration menu
    Copy the full SHA
    66a622c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b263818 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2015

  1. #914 Correct with Code Standards

    Ensure conform to coding standards
    dbcowboy committed Oct 3, 2015
    Configuration menu
    Copy the full SHA
    16aa3b5 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2015

  1. Configuration menu
    Copy the full SHA
    1f72586 View commit details
    Browse the repository at this point in the history