Skip to content

Commit

Permalink
Make Layer name and refId public (#2188)
Browse files Browse the repository at this point in the history
I'm running tests against my animation json files and I want to make sure that all the layers I expect to be there are actually there, but I'm hitting issues with the visibility of these two functions.
  • Loading branch information
ryanhurststrava authored Nov 29, 2022
1 parent 1cfb73e commit bb23817
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lottie/src/main/java/com/airbnb/lottie/model/layer/Layer.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,11 @@ public long getId() {
return layerId;
}

String getName() {
public String getName() {
return layerName;
}

@Nullable String getRefId() {
public @Nullable String getRefId() {
return refId;
}

Expand Down

0 comments on commit bb23817

Please sign in to comment.