1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2024-10-27 20:34:16 +00:00

Wikibase: Add entity-type for lexeme so that 2019-04 wikidata jsons don't fail

This commit is contained in:
gnosygnu 2019-04-26 22:27:36 -04:00
parent 42953aaa0f
commit f895259be6

View File

@ -18,10 +18,12 @@ public class Wbase_claim_entity_type_ {
public static final byte
Tid__item = 0
, Tid__property = 1
, Tid__lexeme = 2
;
public static final Wbase_enum_hash Reg = new Wbase_enum_hash("claim.entity_type", 2);
public static final Wbase_enum_hash Reg = new Wbase_enum_hash("claim.entity_type", 3);
public static final Wbase_enum_itm
Itm__item = Reg.Add(Tid__item , "item")
, Itm__property = Reg.Add(Tid__property , "property")
, Itm__lexeme = Reg.Add(Tid__lexeme , "lexeme")
;
}