Skip to content

Commit ad1eca1

Browse files
committed
Added missing dependency
1 parent c6dd0b2 commit ad1eca1

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package com.jujutsu.tsne;
2+
public class CheckResult {
3+
boolean check = true;
4+
String explanation = "";
5+
6+
public CheckResult(boolean check, String explanation) {
7+
super();
8+
this.check = check;
9+
this.explanation = explanation;
10+
}
11+
12+
public boolean check() {
13+
return check;
14+
}
15+
public void setCheck(boolean check) {
16+
this.check = check;
17+
}
18+
public String getExplanation() {
19+
return explanation;
20+
}
21+
public void setExplanation(String explanation) {
22+
this.explanation = explanation;
23+
}
24+
}

0 commit comments

Comments
 (0)