Hi,
Sorry going to have to vote -1 on this change.
As well as the white space changes making it hard to see what the changes are
there's quite a few few unrelated changes in here.
For instance:
- else if (expect == have)
- yes = true;
- else
- yes = false;
+ else yes = expect == have;
And another:
- Iterator it = tag.clipActions.clipActionRecords.iterator();
- while (it.hasNext())
- {
- ClipActionRecord record = (ClipActionRecord) it.next();
- recordActions(record.actionList);
+ for (Object clipActionRecord : tag.clipActions.clipActionRecords) {
+ ClipActionRecord record = (ClipActionRecord) clipActionRecord;
+ recordActions(record.actionList);
And why was this done?
- public int m_waitedFor;
+ private final int m_waitedFor;
Please revert and reapply the minimal changes that just fix FLEX-34062 -
preferably in the local coding style.
If you want to make other changes raise other JIRA for them.
Thanks,
Justin