Skip to content

Commit

Permalink
Merge branch 'v0.17.x_bugfix' into v0.17.x
Browse files Browse the repository at this point in the history
  • Loading branch information
S1artie committed Mar 23, 2018
2 parents 68171b4 + 2fd1a7c commit 74cf70c
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -588,14 +588,17 @@ protected String calculateFullyQualifiedBaseName(SetListEntry anEntry) {
*/
public void setEntryInExecutionReference(Integer anEntryReference) {
entryInExecutionReference = anEntryReference;
pathOfEntriesInExecution.clear();
List<SetListEntry> tempNewPathOfEntriesInExecution = new ArrayList<SetListEntry>();

if (anEntryReference != null) {
SetListEntry tempCurrent = resolveReference(anEntryReference);
while (tempCurrent != null) {
pathOfEntriesInExecution.add(tempCurrent);
tempNewPathOfEntriesInExecution.add(tempCurrent);
tempCurrent = getParent(tempCurrent);
}
}

pathOfEntriesInExecution = tempNewPathOfEntriesInExecution;
}

public SetListEntry getEntryInExecution() {
Expand Down

0 comments on commit 74cf70c

Please sign in to comment.