mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 01:07:42 +00:00
uncomment path initialization code
This commit is contained in:
parent
ef020a6b56
commit
e35fa1ed90
@ -251,7 +251,7 @@ class SevenZipExtractor {
|
||||
}
|
||||
|
||||
if (detectedFormat == null) {
|
||||
logger.log(Level.WARNING, "Could not detect format for file: " + archiveFile); //NON-NLS
|
||||
logger.log(Level.WARNING, "Could not detect format for file: {0}", archiveFile); //NON-NLS
|
||||
|
||||
// if we don't have attribute info then use file extension
|
||||
String extension = archiveFile.getNameExtension();
|
||||
@ -901,7 +901,7 @@ class SevenZipExtractor {
|
||||
UnpackedNode(String fileName, UnpackedNode parent) {
|
||||
this.fileName = fileName;
|
||||
this.parent = parent;
|
||||
//this.localRelPath = parent.localRelPath + File.separator + fileName;
|
||||
this.localRelPath = parent.localRelPath + File.separator + fileName;
|
||||
//new child derived file will be set by unpack() method
|
||||
parent.children.add(this);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user