Skip to content

Commit

Permalink
Merge pull request #2 from mappingviolence/v0.9.1
Browse files Browse the repository at this point in the history
Merge v0.9.1 into master
  • Loading branch information
Cole Hansen authored Aug 16, 2016
2 parents 3ea1e24 + 22ed353 commit 661b929
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.mappingviolence</groupId>
<artifactId>core</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
<packaging>jar</packaging>

<name>mappingviolence-core</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/mappingviolence/poi/date/Date.java
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public Builder setYear(Integer year) {

public Builder setMonth(String month) {
if (!monthsWith30.contains(month) && !monthsWith31.contains(month)
&& "February".equals(month)) {
&& !"February".equals(month)) {
throw new IllegalArgumentException(month + " is not a valid month");
}
date.month = month;
Expand Down

0 comments on commit 661b929

Please sign in to comment.