Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-46356] Get rid of javafx class
We didn't need it, and it was causing compilation errors on
default-jdk8-headless. Fun!
  • Loading branch information
abayer committed Aug 22, 2017
1 parent 6999c1a commit d90bd06
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/test/java/jenkins/scm/impl/mock/MockSCMController.java
Expand Up @@ -25,7 +25,6 @@

package jenkins.scm.impl.mock;

import com.sun.javafx.collections.UnmodifiableListSet;
import edu.umd.cs.findbugs.annotations.CheckForNull;
import edu.umd.cs.findbugs.annotations.NonNull;
import hudson.FilePath;
Expand Down Expand Up @@ -598,7 +597,7 @@ private LogEntry(String hash, long timestamp, String message, Set<String> files)
this.hash = hash;
this.timestamp = timestamp;
this.message = message;
this.files = new UnmodifiableListSet<String>(new ArrayList<String>(files));
this.files = Collections.unmodifiableSet(files);
}

public String getHash() {
Expand Down

0 comments on commit d90bd06

Please sign in to comment.