Skip to content

Commit 8dbde2a

Browse files
author
Achim Brandt
committed
removed unused import
1 parent c524880 commit 8dbde2a

File tree

1 file changed

+30
-33
lines changed

1 file changed

+30
-33
lines changed

src/main/java/com/arangodb/entity/JobsEntity.java

Lines changed: 30 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616

1717
package com.arangodb.entity;
1818

19-
import com.arangodb.util.CollectionUtils;
20-
21-
import java.util.Iterator;
2219
import java.util.List;
2320

2421
/**
@@ -30,34 +27,34 @@
3027
*/
3128
public class JobsEntity extends BaseEntity {
3229

33-
/**
34-
* The enumeration containing the job state
35-
*/
36-
public static enum JobState {
37-
DONE , PENDING;
38-
public java.lang.String getName() {
39-
if (this == DONE) {
40-
return "done";
41-
}
42-
if (this == PENDING) {
43-
return "pending";
44-
}
45-
return null;
46-
}
47-
}
48-
49-
List<String> jobs;
50-
51-
public List<String> getJobs() {
52-
return jobs;
53-
}
54-
55-
public void setJobs(List<String> jobs) {
56-
this.jobs = jobs;
57-
}
58-
59-
60-
public JobsEntity(List<String> jobs) {
61-
this.jobs = jobs;
62-
}
30+
/**
31+
* The enumeration containing the job state
32+
*/
33+
public static enum JobState {
34+
DONE,
35+
PENDING;
36+
public java.lang.String getName() {
37+
if (this == DONE) {
38+
return "done";
39+
}
40+
if (this == PENDING) {
41+
return "pending";
42+
}
43+
return null;
44+
}
45+
}
46+
47+
List<String> jobs;
48+
49+
public List<String> getJobs() {
50+
return jobs;
51+
}
52+
53+
public void setJobs(List<String> jobs) {
54+
this.jobs = jobs;
55+
}
56+
57+
public JobsEntity(List<String> jobs) {
58+
this.jobs = jobs;
59+
}
6360
}

0 commit comments

Comments
 (0)