| 1 | package edu.ucsb.cs156.frontiers.services.jobs; | |
| 2 | ||
| 3 | import edu.ucsb.cs156.frontiers.entities.Job; | |
| 4 | import edu.ucsb.cs156.frontiers.repositories.JobsRepository; | |
| 5 | import lombok.AllArgsConstructor; | |
| 6 | import lombok.extern.slf4j.Slf4j; | |
| 7 | ||
| 8 | @AllArgsConstructor | |
| 9 | @Slf4j | |
| 10 | public class JobContext { | |
| 11 |   private JobsRepository jobsRepository; | |
| 12 |   private Job job; | |
| 13 | ||
| 14 |   public void log(String message) { | |
| 15 |     log.info("Job %s: %s".formatted(job.getId(), message)); | |
| 16 | 
1
1. log : negated conditional → KILLED | 
    String previousLog = job.getLog() == null ? "" : (job.getLog() + "\n"); | 
| 17 | 
1
1. log : removed call to edu/ucsb/cs156/frontiers/entities/Job::setLog → KILLED | 
    job.setLog(previousLog + message); | 
| 18 | 
1
1. log : negated conditional → KILLED | 
    if (jobsRepository != null) jobsRepository.save(job); | 
| 19 |   } | |
| 20 | } | |
Mutations | ||
| 16 | 
 
 1.1  | 
|
| 17 | 
 
 1.1  | 
|
| 18 | 
 
 1.1  |