Skip to content

Commit

Permalink
Merge pull request #36 from DevFactory/release/methods-should-not-be-…
Browse files Browse the repository at this point in the history
…empty-fix-1

Methods should not be empty
  • Loading branch information
markzhai committed Mar 18, 2016
2 parents 778e858 + 7472579 commit 8b52067
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public boolean zipLogFile(File[] src, File dest) {
*/
@Override
public void uploadLogFile(File zippedFile) {

throw new UnsupportedOperationException();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,19 @@ public static BlockCanary get() {
}

public void start() {
throw new UnsupportedOperationException();
}

public void stop() {
throw new UnsupportedOperationException();
}

public void upload() {
throw new UnsupportedOperationException();
}

public void recordStartTime() {
throw new UnsupportedOperationException();
}

public boolean isMonitorDurationEnd() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public boolean zipLogFile(File[] src, File dest) {
}

public void uploadLogFile(File zippedFile) {

throw new UnsupportedOperationException();
}

@Override
Expand Down

0 comments on commit 8b52067

Please sign in to comment.