Skip to content

Commit

Permalink
'#1861 finalizes merge conflicts.
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdalla committed Oct 26, 2023
1 parent ce78028 commit f90d3ec
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions iped-utils/src/main/java/iped/utils/fsw/FileAttributes.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,62 +9,32 @@
public class FileAttributes implements BasicFileAttributes {

PathWrapper path;
<<<<<<< HEAD

public FileAttributes(PathWrapper path) {
this.path = path;
}

=======
>>>>>>> branch 'OvercomePathWithTrailingSpaces' of https://github.com/sepinf-inc/IPED.git

<<<<<<< HEAD
@Override
public FileTime lastModifiedTime() {
return null;
=======
public FileAttributes(PathWrapper path) {
this.path = path;
>>>>>>> branch 'OvercomePathWithTrailingSpaces' of https://github.com/sepinf-inc/IPED.git
}

@Override
<<<<<<< HEAD
public FileTime lastAccessTime() {
=======
public FileTime lastModifiedTime() {
>>>>>>> branch 'OvercomePathWithTrailingSpaces' of https://github.com/sepinf-inc/IPED.git
return null;
}

@Override
<<<<<<< HEAD
public FileTime creationTime() {
=======
public FileTime lastAccessTime() {
>>>>>>> branch 'OvercomePathWithTrailingSpaces' of https://github.com/sepinf-inc/IPED.git
return null;
}

@Override
<<<<<<< HEAD
public boolean isRegularFile() {
return path.toFile().isFile();
=======
public FileTime creationTime() {
return null;
>>>>>>> branch 'OvercomePathWithTrailingSpaces' of https://github.com/sepinf-inc/IPED.git
}

@Override
<<<<<<< HEAD
=======
public boolean isRegularFile() {
return path.toFile().isFile();
}

@Override
>>>>>>> branch 'OvercomePathWithTrailingSpaces' of https://github.com/sepinf-inc/IPED.git
public boolean isDirectory() {
try (DirectoryStream ds = Files.newDirectoryStream(path)) {
Files.newDirectoryStream(path);
Expand Down

0 comments on commit f90d3ec

Please sign in to comment.