Skip to content
Snippets Groups Projects
  1. Aug 10, 2019
  2. Aug 06, 2019
  3. Aug 04, 2019
  4. Aug 03, 2019
  5. Aug 02, 2019
  6. Aug 01, 2019
  7. Jul 30, 2019
  8. Jul 29, 2019
  9. Jul 26, 2019
  10. Jul 23, 2019
  11. Jul 02, 2019
  12. Jul 01, 2019
    • Daniel Gerhardt's avatar
      a06f3c0a
    • Daniel Gerhardt's avatar
      Fix code style violations regarding comments · f8bafdff
      Daniel Gerhardt authored
      * Removed obsolete commented-out code.
      * Fixed indentation of commented out code.
      * Added FIXME comments where old code still has to be migrated.
      f8bafdff
    • Daniel Gerhardt's avatar
      Fix multiple code style violations · 387c6347
      Daniel Gerhardt authored
      Rules:
      * (naming) ParameterName
      * (naming) LocalVariableName
      * (naming) MemberName
      * (naming) InterfaceTypeParameterName
      * (naming) AbbreviationAsWordInName
      * (modifier) ModifierOrder
      * (blocks) NeedBraces
      * (coding) OneStatementPerLine
      * (coding) MultipleVariableDeclarations
      * (coding) VariableDeclarationUsageDistance
      * (coding) MissingSwitchDefault
      * (coding) OverloadMethodsDeclarationOrder
      * (extension) RightCurlySame
      * (misc) ArrayTypeStyle
      387c6347
    • Daniel Gerhardt's avatar
      Break long lines to conform with style conventions · 10bb84c2
      Daniel Gerhardt authored
      The following conventions have been applied:
      * Rule: (sizes) LineLength
      10bb84c2
    • Daniel Gerhardt's avatar
      Adjust whitespace to conform with style conventions · 775382d1
      Daniel Gerhardt authored
      The following conventions have been applied:
      * Fix indentation levels
        Rules: (indentation) Indentation, (regexp) RegexpSinglelineJava
      * Always use operators at the beginning of a new line if there is a line
        break.
        Rule: (whitespace) OperatorWrap
      * Always use empty lines between method declarations.
        Rule: (whitespace) EmptyLineSeparator
      * Always use new line between annotation and field/method declaration.
        Rule: (extension) AnnotationLocationMostCases
      * Additional rules:
          * (whitespace) ParenPad
          * (whitespace) GenericWhitespace
          * (blocks) LeftCurly
          * (extension) RightCurlyAlone
      775382d1
    • Daniel Gerhardt's avatar
      Adjust imports to conform with style conventions · a67dc377
      Daniel Gerhardt authored
      The following conventions have been applied:
      * Import order: static packages -> other packages -> ARSnova packages
        Rule: (imports) CustomImportOrder
      * New line between import package groups
        Rule: (imports) CustomImportOrder
      * All packages are imported explicitly (no wildcard imports)
        Rule: (imports) AvoidStarImport
      * New line between license comment and package line
        Rule: (whitespace) EmptyLineSeparator
      a67dc377
    • Daniel Gerhardt's avatar
      Adjust Checkstyle config for ARSnova · f881d8b6
      Daniel Gerhardt authored
      f881d8b6
    • Daniel Gerhardt's avatar
      Bump Checkstyle Maven plugin and dependency · 2bf92742
      Daniel Gerhardt authored
      The updated Maven plugin fixes compatibilty with Checkstyle >= 8.2.
      Checkstyle >= 8.11 is needed for support of the `LambdaParameterName`
      rule used by Google style checks.
      2bf92742