Skip to content

Commit

Permalink
chore: remove check for removed type
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfromme committed Mar 15, 2023
1 parent e1250de commit 6612f36
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions rules/no-zeebe-properties.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
const { is } = require('bpmnlint-utils');

const { hasNoExtensionElement } = require('./utils/element');

const { reportErrors } = require('./utils/reporter');
Expand All @@ -8,10 +6,6 @@ const { skipInNonExecutableProcess } = require('./utils/rule');

module.exports = skipInNonExecutableProcess(function() {
function check(node, reporter) {
if (!is(node, 'zeebe:PropertiesHolder')) {
return;
}

const errors = hasNoExtensionElement(node, 'zeebe:Properties', node, '8.1');

if (errors && errors.length) {
Expand Down

0 comments on commit 6612f36

Please sign in to comment.