File tree 1 file changed +0
-7
lines changed
src/main/java/jenkins/plugins/office365connector
1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,6 @@ public class FactsBuilder {
51
51
final static String NAME_SKIPPED_TESTS = "Skipped tests" ;
52
52
final static String NAME_PASSED_TESTS = "Passed tests" ;
53
53
final static String NAME_TESTS_COMPACT = "Tests" ;
54
- final static String NAME_CHANGES = "Changes" ;
55
-
56
54
57
55
private final List <Fact > facts = new ArrayList <>();
58
56
private final List <Fact > comapactFacts = new ArrayList <>();
@@ -89,11 +87,6 @@ public void addTestsCompact() {
89
87
comapactFacts .add (new Fact (NAME_TESTS_COMPACT , testStatus .toString ()));
90
88
}
91
89
92
- public void addChanges (String changes ) {
93
- comapactFacts .add (new Fact (NAME_CHANGES , changes ));
94
- }
95
-
96
-
97
90
public void addStatusStarted () {
98
91
facts .add (new Fact (NAME_STATUS , "Started" ));
99
92
}
You can’t perform that action at this time.
0 commit comments