mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 10:17:41 +00:00
uncomment path initialization code
This commit is contained in:
parent
ef020a6b56
commit
e35fa1ed90
@ -251,7 +251,7 @@ class SevenZipExtractor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (detectedFormat == null) {
|
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
|
// if we don't have attribute info then use file extension
|
||||||
String extension = archiveFile.getNameExtension();
|
String extension = archiveFile.getNameExtension();
|
||||||
@ -901,7 +901,7 @@ class SevenZipExtractor {
|
|||||||
UnpackedNode(String fileName, UnpackedNode parent) {
|
UnpackedNode(String fileName, UnpackedNode parent) {
|
||||||
this.fileName = fileName;
|
this.fileName = fileName;
|
||||||
this.parent = parent;
|
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
|
//new child derived file will be set by unpack() method
|
||||||
parent.children.add(this);
|
parent.children.add(this);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user