Skip to content

Commit cfd0d76

Browse files
committed
added API Error example - mark maven unstable
DO NOT MERGE #2486
1 parent 9474c95 commit cfd0d76

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Jenkinsfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ pipeline {
3333
recordIssues(publishAllIssues:false, ignoreQualityGate:true,
3434
tool: eclipse(name: 'Compiler and API Tools', pattern: '**/target/compilelogs/*.xml'),
3535
qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]])
36-
recordIssues publishAllIssues:false, tools: [mavenConsole(), javaDoc()]
36+
recordIssues(publishAllIssues:false, ignoreQualityGate:true,
37+
tools: [mavenConsole(), javaDoc()]
38+
qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]])
3739
}
3840
}
3941
}

bundles/org.eclipse.ui.browser/src/org/eclipse/ui/browser/BrowserFactory.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ public boolean isAvailable() {
3030
return true;
3131
}
3232

33+
/**
34+
* Implementators of <code>org.eclipse.ui.browser.browsers</code> extension
35+
* points must provide an implementation of this abstract class.
36+
*
37+
* @since 3.8
38+
*/
39+
public void addedWithoutUpdate() {
40+
}
3341
/**
3442
* Obtains a new instance of a web browser.
3543
*

0 commit comments

Comments
 (0)