handler.setStep(new StepSupport(){ @Override public void execute( StepExecution stepExecution) throws JobInterruptedException { count++; stepExecution.setStatus(org.springframework.batch.core.BatchStatus.COMPLETED); stepExecution.setExitStatus(new ExitStatus(STR0)); }}); | handler.setStep(new StepSupport(){ @Override public void execute( StepExecution stepExecution) throws JobInterruptedException { count.incrementAndGet(); stepExecution.setStatus(org.springframework.batch.core.BatchStatus.COMPLETED); stepExecution.setExitStatus(new ExitStatus(STR0)); }}); | count++ | count.incrementAndGet() | spring-batch | eba7265a95dc3b264ae901f778f47dc890157af6 | org.springframework.batch.core.jsr.partition.JsrPartitionHandlerTests | | | | | | Uses | True |
script=groovyShell.parse(writer.toString(),STR0 + counter++ + STR1); | script=groovyShell.parse(writer.toString(),STR0 + counter.incrementAndGet() + STR1); | counter++ | counter.incrementAndGet() | groovy | e064359537a27f9eef4df81cf5541beec4ade482 | groovy.text.XmlTemplateEngine | | | | | | Uses | True |
template.script=groovyShell.parse(script,STR0 + counter++ + STR1); | template.script=groovyShell.parse(script,STR0 + counter.incrementAndGet() + STR1); | counter++ | counter.incrementAndGet() | groovy | e064359537a27f9eef4df81cf5541beec4ade482 | groovy.text.SimpleTemplateEngine | | | | | | Uses | True |