Skip to content

Commit

Permalink
+ internal rename
Browse files Browse the repository at this point in the history
  • Loading branch information
q3769 committed Oct 8, 2023
1 parent a3e0c86 commit 77461f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<groupId>io.github.elf4j</groupId>
<artifactId>elf4j-engine</artifactId>
<version>13.0.3</version>
<version>13.0.4</version>
<packaging>jar</packaging>
<name>elf4j-engine</name>
<description>A stand-alone Java log engine implementing the ELF4J (Easy Logging Facade for Java) API</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import java.util.Optional;

class PatternElements {
private static final EnumSet<PREDEFINED_PATTERN_ELEMENT> PREDEFINED_PATTERN_ELEMENT_TYPES =
EnumSet.allOf(PREDEFINED_PATTERN_ELEMENT.class);
private static final EnumSet<PredefinedPatternElement> PREDEFINED_PATTERN_ELEMENT_TYPES =
EnumSet.allOf(PredefinedPatternElement.class);

private PatternElements() {
}
Expand Down Expand Up @@ -38,7 +38,7 @@ static PatternElement parsePredefinedPatternELement(String predefinedPatternElem
/**
*
*/
enum PREDEFINED_PATTERN_ELEMENT {
enum PredefinedPatternElement {
/**
*
*/
Expand Down

0 comments on commit 77461f3

Please sign in to comment.