- 
          
 - 
                Notifications
    
You must be signed in to change notification settings  - Fork 3.7k
 
Enable Spotless #8952
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
Enable Spotless #8952
Conversation
| 
           Thanks for your pull request! This pull request does not follow the contribution rules. Could you have a look? ❌ Contribution — JIRA issues › This message was automatically generated.  | 
    
| * @param message The message explaining the exception condition | ||
| */ | ||
| public QueryParameterException(String message) { | ||
| super( message ); | 
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Putting on hold until we figure out how to make this consistent with the auto-formatter on Search/Validator.
Maybe there's nothing to do, but let's at least check.
| assertTrue( test.getDate1().equals(testvalue)); | ||
| test = (TestInterSystemsFunctionsClass) s2.byId( TestInterSystemsFunctionsClass.class ).with( LockOptions.NONE ).load( 10L ); | ||
| assertTrue( test.getDate1().equals(testvalue)); | ||
| Date value = (Date) s2.createQuery( "select nvl(o.date,o.dateText) from TestInterSystemsFunctionsClass as o" ) | 
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
| assertTrue( value.equals(testvalue)); | ||
| Object nv = s2.createQuery( "select nullif(o.dateText,o.dateText) from TestInterSystemsFunctionsClass as o" ) | ||
| assertTrue( value.equals(testvalue)); | ||
| Object nv = s2.createQuery( "select nullif(o.dateText,o.dateText) from TestInterSystemsFunctionsClass as o" ) | 
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
| assertTrue( dateText.equals("1977-07-03")); | ||
| value = (Date) s2.createQuery( "select ifnull(o.date,o.date1) from TestInterSystemsFunctionsClass as o" ) | ||
| assertTrue( dateText.equals("1977-07-03")); | ||
| value = (Date) s2.createQuery( "select ifnull(o.date,o.date1) from TestInterSystemsFunctionsClass as o" ) | 
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
| assertTrue( value.equals(testvalue)); | ||
| value = (Date) s2.createQuery( "select ifnull(o.date3,o.date,o.date1) from TestInterSystemsFunctionsClass as o" ) | ||
| assertTrue( value.equals(testvalue)); | ||
| value = (Date) s2.createQuery( "select ifnull(o.date3,o.date,o.date1) from TestInterSystemsFunctionsClass as o" ) | 
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
| assertTrue(pos.intValue() == 6); | ||
| String st = (String) s2.createQuery( "select convert(o.date1, SQL_TIME) from TestInterSystemsFunctionsClass as o" ) | ||
| assertTrue(pos.intValue() == 6); | ||
| String st = (String) s2.createQuery( "select convert(o.date1, SQL_TIME) from TestInterSystemsFunctionsClass as o" ) | 
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
| 
           This now implements the suggestions made by @yrodiere. I'm going to merge it soon, because it's a PITA to resolve conflicts in such a massive commit.  | 
    
[Please describe here what your change is about]
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license
and can be relicensed under the terms of the LGPL v2.1 license in the future at the maintainers' discretion.
For more information on licensing, please check here.