fix(TBD-9669): add method signature for class RunStat (#2888)
* fix(TBD-9669): add method signature for class RunStat add a new signature for the method "log" * fix(TBD-9669): add method signature for failed tujs fix variable name as it lead to compile error
This commit is contained in:
@@ -470,6 +470,15 @@ public class RunStat implements Runnable {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* work for avoiding the 65535 issue
|
||||
*/
|
||||
public synchronized void log(Map<String, Object> resourceMap, String iterateId, int mode, int nbLine, String connectionUniqueName) {
|
||||
if(resourceMap.get("inIterateVComp") == null){
|
||||
log(connectionUniqueName+iterateId, mode, nbLine);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* work for avoiding the 65535 issue
|
||||
|
||||
Reference in New Issue
Block a user