Skip to content

Commit

Permalink
Merge pull request #72 from Sasun/master
Browse files Browse the repository at this point in the history
changes build, processMain and buildCoreData methods access level to …
  • Loading branch information
azakhary committed Dec 24, 2015
2 parents 7077060 + f2713e2 commit daf740e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/com/uwsoft/editor/renderer/scene2d/CompositeActor.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private void makeLayerMap(CompositeItemVO vo) {
}
}

private void build(CompositeItemVO vo, BuiltItemHandler itemHandler, boolean isRoot) {
protected void build(CompositeItemVO vo, BuiltItemHandler itemHandler, boolean isRoot) {
buildImages(vo.composite.sImages, itemHandler);
build9PatchImages(vo.composite.sImage9patchs, itemHandler);
buildLabels(vo.composite.sLabels, itemHandler);
Expand Down Expand Up @@ -150,7 +150,7 @@ protected void buildLabels(ArrayList<LabelVO> labels, BuiltItemHandler itemHandl
}
}

private void processMain(Actor actor, MainItemVO vo) {
protected void processMain(Actor actor, MainItemVO vo) {

buildCoreData(actor, vo);

Expand All @@ -170,7 +170,7 @@ private void processMain(Actor actor, MainItemVO vo) {
}
}

private void buildCoreData(Actor actor, MainItemVO vo){
protected void buildCoreData(Actor actor, MainItemVO vo){

//custom variables
CustomVariables cv = null;
Expand Down

0 comments on commit daf740e

Please sign in to comment.