Skip to content

Commit

Permalink
Remove empty blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Jun 30, 2016
1 parent 40bf2fc commit 773a263
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/net/fortuna/ical4j/model/Dur.java
Expand Up @@ -124,18 +124,18 @@ public Dur(final String value) {
else if ("-".equals(token)) {
negative = true;
}
else if ("P".equals(token)) {
// does nothing..
}
// does nothing..
// else if ("P".equals(token)) {
// }
else if ("W".equals(token)) {
weeks = Integer.parseInt(prevToken);
}
else if ("D".equals(token)) {
days = Integer.parseInt(prevToken);
}
else if ("T".equals(token)) {
// does nothing..
}
// does nothing..
// else if ("T".equals(token)) {
// }
else if ("H".equals(token)) {
hours = Integer.parseInt(prevToken);
}
Expand Down

0 comments on commit 773a263

Please sign in to comment.