Skip to content
Snippets Groups Projects
  1. Sep 13, 2022
  2. Sep 08, 2022
  3. Aug 31, 2022
  4. Aug 30, 2022
  5. Jul 15, 2022
  6. Jul 14, 2022
  7. Jul 13, 2022
  8. Jul 12, 2022
  9. Jul 09, 2022
  10. Jul 05, 2022
  11. Jun 30, 2022
  12. Jun 29, 2022
  13. Jun 28, 2022
  14. Jun 27, 2022
    • Lars Johansson's avatar
      Fix issues as noted by SonarLint + field name in repository classes · edeff4e8
      Lars Johansson authored
      "@Override" should be used on overriding and implementing methods
      "Preconditions" and logging arguments should not require evaluation
      "static" base class members should not be accessed via derived types
      Collection.isEmpty() should be used to test for emptiness
      Constructors of an "abstract" class should not be declared "public"
      Mutable fields should not be "public static"
      Pattern Matching for "instanceof" operator should be used instead of simple "instanceof" + cast
      Redundant casts should not be used
      Sections of code should not be commented out
      String literals should not be duplicated
      Unused assignments should be removed
      edeff4e8
    • Lars Johansson's avatar
      Refactor integration tests · bcd4a5cf
      Lars Johansson authored
      Update test utility methods including order of parameters.
      Refactor integration tests.
      bcd4a5cf
  15. Jun 23, 2022
  16. Jun 16, 2022
  17. Jun 08, 2022
  18. Jun 01, 2022
  19. May 05, 2022
    • Lars Johansson's avatar
      Fix issues as noted by SonarLint + enum comparison · d35ccfb4
      Lars Johansson authored
      Assignments should not be redundant
      Collection sizes and array length comparisons should make sense
      Conditionally executed code should be reachable
      Empty arrays and collections should be returned instead of null
      Local variables should not shadow class fields
      Null pointers should not be dereferenced
      Pattern Matching for "instanceof" operator should be used instead of simple "instanceof" + cast
      Return of boolean expressions should not be wrapped into an "if-then-else" statement
      Sections of code should not be commented out
      "switch" statements should have at least 3 "case" clauses
      Two branches in a conditional structure should not have exactly the same implementation
      d35ccfb4
    • Lars Johansson's avatar
      Fix issues as noted by SonarLint · 9ee6b80c
      Lars Johansson authored
      Declarations should use Java collection interfaces such as "List" rather than specific implementation classes such as "LinkedList"
      Empty statements should be removed
      JUnit assertTrue/assertFalse should be simplified to the corresponding dedicated assertion
      JUnit5 test classes and methods should have default package visibility
      Methods and field names should not be the same or differ only by capitalization
      Nested "enum"s should not be declared static
      9ee6b80c
  20. May 04, 2022
Loading