Skip to content

Commit

Permalink
javafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
radeusgd committed Dec 20, 2024
1 parent 4368160 commit 62bc402
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
import org.enso.interpreter.runtime.data.vector.ArrayLikeAtNode;
import org.enso.interpreter.runtime.data.vector.ArrayLikeHelpers;
import org.enso.interpreter.runtime.data.vector.ArrayLikeLengthNode;
import org.enso.interpreter.runtime.error.DataflowError;
import org.enso.interpreter.runtime.error.PanicException;
import org.enso.interpreter.runtime.library.dispatch.TypesLibrary;

Expand Down Expand Up @@ -478,7 +477,8 @@ public static EnsoDateTime getCreationTime(EnsoFile file) throws IOException {
@TruffleBoundary
public static EnsoDateTime getLastModifiedTime(EnsoFile file) throws IOException {
return new EnsoDateTime(
ZonedDateTime.ofInstant(file.truffleFile.getLastModifiedTime().toInstant(), ZoneOffset.UTC));
ZonedDateTime.ofInstant(
file.truffleFile.getLastModifiedTime().toInstant(), ZoneOffset.UTC));
}

@Builtin.Method(name = "posix_permissions_builtin")
Expand Down

0 comments on commit 62bc402

Please sign in to comment.