fixed faux property display order (#359)

Co-authored-by: Georgy Litvinov <georgy.litvinov@tib.eu>
This commit is contained in:
Georgy Litvinov 2023-01-24 13:21:46 +01:00 committed by GitHub
parent 7dabc6b2ab
commit 2873bba81d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -162,7 +162,10 @@ public class FauxDataPropertyWrapper extends DataProperty implements FauxPropert
innerDP.setExample(example);
}
@Override
public int getDisplayTier() {
return faux.getDisplayTier();
}
@Override
public boolean getFunctional() {

View file

@ -372,7 +372,7 @@ public class FauxObjectPropertyWrapper extends ObjectProperty implements FauxPro
@Override
public int getDomainDisplayTier() {
return innerOP.getDomainDisplayTier();
return faux.getDisplayTier();
}
@Override