Skip to content

Commit

Permalink
Merge pull request #33 from darraghs/master
Browse files Browse the repository at this point in the history
Fix for JENKINS-26907
  • Loading branch information
Brantone committed Jan 16, 2017
2 parents 0e4cecd + 84a31ce commit 3095b19
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/main/java/hockeyapp/HockeyappRecorder.java
Expand Up @@ -55,16 +55,12 @@
import java.nio.charset.Charset;
import java.util.*;

@XStreamConverter(HockeyappRecorderConverter.class)
public class HockeyappRecorder extends Recorder {

public static final long SCHEMA_VERSION_NUMBER = 2L;
public static final String DEFAULT_HOCKEY_URL = "https://rink.hockeyapp.net";
public static final int DEFAULT_TIMEOUT = 60000;

@Exported
@XStreamAsAttribute
public long schemaVersion = SCHEMA_VERSION_NUMBER;

@Exported
public List<HockeyappApplication> applications;
Expand All @@ -82,7 +78,6 @@ public class HockeyappRecorder extends Recorder {
@DataBoundConstructor
public HockeyappRecorder(List<HockeyappApplication> applications, boolean debugMode,
BaseUrlHolder baseUrlHolder, boolean failGracefully) {
this.schemaVersion = SCHEMA_VERSION_NUMBER;
this.applications = applications;
this.debugMode = debugMode;
if (baseUrlHolder != null) {
Expand Down

0 comments on commit 3095b19

Please sign in to comment.