Skip to content

Commit

Permalink
Merge pull request #174 from mivek/bugfix/iceCrystalsPellets
Browse files Browse the repository at this point in the history
Bugfix/ice crystals pellets
  • Loading branch information
mivek authored Jul 13, 2019
2 parents 6aec8bd + 69e8944 commit cd56c8d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>3.1.11</version>
<version>3.1.12</version>
<executions>
<execution>
<goals>
Expand All @@ -113,7 +113,7 @@
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.4.8</version>
<version>1.4.9</version>
<executions>
<execution>
<goals>
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/io/github/mivek/enums/Phenomenon.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ public enum Phenomenon {
/** Snow grains. */
SNOW_GRAINS("SG", Messages.getInstance().getString("Phenomenon.SG")), //$NON-NLS-1$
/** Ice pellets. */
ICE_PELLETS("IC", Messages.getInstance().getString("Phenomenon.IC")), //$NON-NLS-1$
ICE_PELLETS("PL", Messages.getInstance().getString("Phenomenon.PL")), //$NON-NLS-1$
/** Ice crystals. */
ICE_CRYSTALS("PL", Messages.getInstance().getString("Phenomenon.PL")), //$NON-NLS-1$
ICE_CRYSTALS("IC", Messages.getInstance().getString("Phenomenon.IC")), //$NON-NLS-1$
/** Hail. */
HAIL("GR", Messages.getInstance().getString("Phenomenon.GR")), //$NON-NLS-1$
/** Small hail. */
Expand Down Expand Up @@ -55,9 +55,9 @@ public enum Phenomenon {
FUNNEL_CLOUD("FC", Messages.getInstance().getString("Phenomenon.FC")); //$NON-NLS-1$

/** Shortcut of the phenomenon. */
private String fShortcut = ""; //$NON-NLS-1$
private String fShortcut;
/** Name of the phenomenon. */
private String fName = ""; //$NON-NLS-1$
private String fName;

/**
* Constructor.
Expand Down

0 comments on commit cd56c8d

Please sign in to comment.