Skip to content

Commit

Permalink
Clean up warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lwj5 committed Jun 28, 2018
1 parent 68e4297 commit f110e82
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
Expand Up @@ -33,6 +33,11 @@
public abstract class AbstractQueueScheduler
extends AbstractQueue<Job> implements Scheduler, BlockingQueue<Job>, AutoCloseable {

/**
* Get the queue this instance is using.
*
* @return An instance of blocking queue
*/
abstract BlockingQueue<Job> getQueue();

@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ai/preferred/venom/request/VRequest.java
Expand Up @@ -370,7 +370,7 @@ public final T setUrl(final String url) {
*
* @return an instance of Request.
*/
public final VRequest build() {
public VRequest build() {
return new VRequest(this);
}

Expand Down
1 change: 1 addition & 0 deletions src/main/java/ai/preferred/venom/storage/FileManager.java
Expand Up @@ -26,6 +26,7 @@
* @author Maksim Tkachenko
* @author Truong Quoc Tuan
*/
@SuppressWarnings("RedundantThrows")
public interface FileManager {

/**
Expand Down
1 change: 1 addition & 0 deletions src/main/java/ai/preferred/venom/storage/Record.java
Expand Up @@ -30,6 +30,7 @@
* @author Truong Quoc Tuan
* @author Ween Jiann Lee
*/
@SuppressWarnings("RedundantThrows")
public interface Record {

/**
Expand Down

0 comments on commit f110e82

Please sign in to comment.