Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CityDoctor
CityDoctor2
Commits
4645c50a
Commit
4645c50a
authored
Jan 27, 2025
by
Riegel
Browse files
Fix: Skip export of compressed Archive entries
parent
f95176d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
CityDoctorParent/CityDoctorModel/src/main/java/de/hft/stuttgart/citydoctor2/utils/ArchivePacker.java
View file @
4645c50a
...
...
@@ -30,7 +30,7 @@ public class ArchivePacker {
tmpDir
=
Files
.
createTempDirectory
(
"zipTmp"
);
tmpDir
.
toFile
().
deleteOnExit
();
for
(
CityGmlZipEntry
entry
:
archive
.
getEntries
())
{
if
(
entry
.
getErrorType
()
!=
null
)
{
if
(
entry
.
getErrorType
()
!=
null
||
!
entry
.
isDecompressed
())
{
continue
;
}
CityDoctorModel
model
=
entry
.
getModel
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment