Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ public class CreateBatchJobXMLFileOperation {
/** partitionMode의 Step 정보*/
private ArrayList<String> partitionModeStep = new ArrayList<String>();

/** decisionVOList중 xml파일에 추가한 decision의 수*/
private int decisionDone = 0;

/** project name **/
private String projectName = null;

Expand Down Expand Up @@ -511,7 +508,6 @@ private void appendDecisionElement(Element beansElement, Element job, String job
if(decisionVOList != null && decisionVOList.size() > 0) {
int j = 0;
for (j = 0; j < decisionVOList.size(); j++) {
j =+ decisionDone;
if(decisionVOList.size() > j){
if(jobName.equals(decisionVOList.get(j).getJobName())){
// decision
Expand Down Expand Up @@ -569,8 +565,6 @@ private void appendDecisionElement(Element beansElement, Element job, String job
}

}

decisionDone++;
}
}
}//for-end
Expand Down
Loading