Github user robertdale commented on a diff in the pull request:

    https://github.com/apache/tinkerpop/pull/570#discussion_r105959819
  
    --- Diff: 
gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/jsr223/customizer/CompilationOptionsCustomizerProvider.java
 ---
    @@ -31,13 +31,17 @@
     @Deprecated
     public class CompilationOptionsCustomizerProvider implements 
CompilerCustomizerProvider {
     
    -    private final int expectedCompilationTime;
    +    private final long expectedCompilationTime;
     
    -    public CompilationOptionsCustomizerProvider(final int 
expectedCompilationTime) {
    -        this.expectedCompilationTime = expectedCompilationTime;
    +    public CompilationOptionsCustomizerProvider(final Integer 
expectedCompilationTime) {
    +        this.expectedCompilationTime = expectedCompilationTime.longValue();
         }
     
    -    public int getExpectedCompilationTime() {
    +    public CompilationOptionsCustomizerProvider(final Long 
expectedCompilationTime) {
    +        this.expectedCompilationTime = expectedCompilationTime.intValue();
    --- End diff --
    
    Did you mean `.longValue()`?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to