Skip to content

Commit e05c906

Browse files
committed
try to make build fail
1 parent 28a7123 commit e05c906

2 files changed

Lines changed: 1 addition & 22 deletions

File tree

.github/workflows/pr-verify.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,6 @@ jobs:
117117
uses: scacap/action-surefire-report@v1
118118
with:
119119
check_name: Test report - integration-tests
120-
- name: Cancel workflow on failure
121-
uses: vishnudxb/cancel-workflow@v1.2
122-
if: failure()
123-
with:
124-
repo: eclipse/rdf4j
125-
workflow_id: ${{ github.run_id }}
126-
access_token: ${{secrets.GITHUB_TOKEN}}
127120

128121
slow-tests:
129122
runs-on: ubuntu-latest
@@ -151,13 +144,6 @@ jobs:
151144
uses: scacap/action-surefire-report@v1
152145
with:
153146
check_name: Test report - slow-tests
154-
- name: Cancel workflow on failure
155-
uses: vishnudxb/cancel-workflow@v1.2
156-
if: failure()
157-
with:
158-
repo: eclipse/rdf4j
159-
workflow_id: ${{ github.run_id }}
160-
access_token: ${{secrets.GITHUB_TOKEN}}
161147

162148
package-assembly:
163149
runs-on: ubuntu-latest
@@ -210,13 +196,6 @@ jobs:
210196
- name: Run end-to-end tests of RDF4J Server and Workbench
211197
working-directory: ./e2e
212198
run: ./run.sh
213-
- name: Cancel workflow on failure
214-
uses: vishnudxb/cancel-workflow@v1.2
215-
if: failure()
216-
with:
217-
repo: eclipse/rdf4j
218-
workflow_id: ${{ github.run_id }}
219-
access_token: ${{secrets.GITHUB_TOKEN}}
220199

221200
copyright-check:
222201
runs-on: ubuntu-latest

core/sail/api/src/main/java/org/eclipse/rdf4j/sail/helpers/AbstractSailConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ public final boolean hasStatement(Resource subj, IRI pred, Value obj, boolean in
443443
protected boolean hasStatementInternal(Resource subj, IRI pred, Value obj, boolean includeInferred,
444444
Resource[] contexts) {
445445
try (var iteration = getStatementsInternal(subj, pred, obj, includeInferred, contexts)) {
446-
return iteration.hasNext();
446+
return iteration.hasNext();
447447
}
448448
}
449449

0 commit comments

Comments
 (0)