Skip to content
This repository has been archived by the owner on Apr 5, 2019. It is now read-only.

Commit

Permalink
Fix some warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
JBYoshi committed Nov 15, 2015
1 parent 7c04a28 commit 2d03909
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/jbyoshi/gitupdate/GitUpdate.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
package jbyoshi.gitupdate;

import java.io.*;
import java.nio.file.*;
import java.util.*;

import org.eclipse.jgit.api.*;
Expand All @@ -28,7 +27,7 @@
import jbyoshi.gitupdate.processor.*;

public class GitUpdate {
private static final Set<File> updated = new HashSet<File>();
private static final Set<File> updated = new HashSet<>();
private static final ImmutableList<Processor> processors = ImmutableList.of(new Fetch(), new FastForward(),
new Push());

Expand Down

0 comments on commit 2d03909

Please sign in to comment.