Skip to content

Commit

Permalink
Update JSFVWriter.java
Browse files Browse the repository at this point in the history
Fix warnings for Java 1.7 compilation.
  • Loading branch information
myinon authored Jan 1, 2017
1 parent 0456271 commit 6b376d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/JSFVWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ public static void main(String args[]) {
}
}

Path sfvParent = sfv.getParent();
List<String> lines = new ArrayList<>();
final Path sfvParent = sfv.getParent();
final List<String> lines = new ArrayList<>();
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.S'Z'XXX");

if (description.length() > 0) {
Expand Down

0 comments on commit 6b376d0

Please sign in to comment.