Skip to content

Commit 3b59863

Browse files
committed
spotless
1 parent ad17b04 commit 3b59863

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

framework/codemodder-base/src/main/java/io/codemodder/Codemod.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@
3636
/** How important it is that this codemod execute sooner in the list of codemods being run. */
3737
CodemodExecutionPriority executionPriority() default CodemodExecutionPriority.NORMAL;
3838

39-
/** How important this codemod's changes are. Maybe a stand-in for a severity value that we may want to replace this with someday. May be unused locally, but is needed for documentation. */
39+
/**
40+
* How important this codemod's changes are. Maybe a stand-in for a severity value that we may
41+
* want to replace this with someday. May be unused locally, but is needed for documentation.
42+
*/
4043
@SuppressWarnings("unused")
4144
Importance importance() default Importance.MEDIUM;
4245
}
Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
package io.codemodder;
22

3-
/**
4-
* Represents the importance of a codemod.
5-
*/
3+
/** Represents the importance of a codemod. */
64
public enum Importance {
7-
HIGH,
8-
MEDIUM,
9-
LOW
5+
HIGH,
6+
MEDIUM,
7+
LOW
108
}

0 commit comments

Comments
 (0)