YAML item proviuder: fix method isVersionSupported (#4820)

Required after the merge of PR #4807 and PR #4776

Signed-off-by: Laurent Garnier <lg.hc@free.fr>
pull/4733/head
lolodomo 2025-05-18 21:57:02 +02:00 committed by GitHub
parent f6b6af7486
commit cb42343c3e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public class YamlItemProvider extends AbstractProvider<Item> implements ItemProv
@Override
public boolean isVersionSupported(int version) {
return version >= 2;
return version >= 1;
}
@Override