Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfeismann committed Feb 23, 2024
1 parent 275838a commit 317a63c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/edu/ie3/datamodel/io/processor/Processor.java
Original file line number Diff line number Diff line change
Expand Up @@ -401,10 +401,10 @@ protected String processOperationTime(OperationTime operationTime, String fieldN
* manually BEFORE calling this method!
*
* @param zonedDateTime representation of the ZonedDateTime
* @return string representation of the ZonedDateTime
* @return ISO 8601 conform string representation of the ZonedDateTime
*/
protected String processZonedDateTime(ZonedDateTime zonedDateTime) {
return TimeUtil.withDefaults.toString(zonedDateTime);
return TimeUtil.withDefaults.toString(zonedDateTime);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
*/
package edu.ie3.test.common

import edu.ie3.util.TimeUtil

import static edu.ie3.util.quantities.PowerSystemUnits.*
import static tech.units.indriya.unit.Units.CELSIUS
import static tech.units.indriya.unit.Units.METRE_PER_SECOND
Expand All @@ -20,6 +18,7 @@ import edu.ie3.datamodel.models.timeseries.individual.TimeBasedValue
import edu.ie3.datamodel.models.timeseries.repetitive.LoadProfileEntry
import edu.ie3.datamodel.models.timeseries.repetitive.LoadProfileInput
import edu.ie3.datamodel.models.value.*
import edu.ie3.util.TimeUtil
import org.locationtech.jts.geom.Coordinate
import org.locationtech.jts.geom.GeometryFactory
import org.locationtech.jts.geom.Point
Expand Down

0 comments on commit 317a63c

Please sign in to comment.