Ignore:
Timestamp:
07/15/13 16:46:11 (12 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/branches/coolemall/src/simulator/utils/XsltTransformations.java

    r490 r1131  
    162162                int end = 0; 
    163163                 
    164                 begin = xmlJob.indexOf("appId=") + 7; 
     164                begin = xmlJob.indexOf("id=") + 4; 
    165165                end = xmlJob.indexOf("\"", begin); 
    166166                String jobId = xmlJob.substring(begin, end); 
     
    178178                        end += 7; 
    179179                        String task = xmlJob.substring(begin, end); 
    180                         tb = task.indexOf("taskId=") + 8; 
     180                        tb = task.indexOf("id=") + 4; 
    181181                        te = task.indexOf("\"", tb); 
    182182                        taskId = task.substring(tb, te); 
Note: See TracChangeset for help on using the changeset viewer.