Skip to content

Commit

Permalink
- fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DrAlexD committed Oct 16, 2023
1 parent 95c9bbd commit 3908f06
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -522,10 +522,12 @@ class LineLength(configRules: List<RulesConfig>) : DiktatRule(
abstract fun fix()

/**
* Function unFix - unfix fix-changes in anything nodes
* Function unFix - unfix incorrect unnecessary fix-changes
*/
@Suppress("EmptyFunctionBlock")
open fun unFix() {}
open fun unFix() {
// Nothing to do here by default.
}
}

/**
Expand Down

0 comments on commit 3908f06

Please sign in to comment.