Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
c8286182
Kaydet (Commit)
c8286182
authored
Şub 20, 2003
tarafından
Tomas O'Connor
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
IssueZilla 11463 - Not calculating the deployment directory correctly when checking if
overwrite needed.
üst
18d7e428
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
ParcelZipper.java
...ting/java/org/openoffice/idesupport/zip/ParcelZipper.java
+15
-3
No files found.
scripting/java/org/openoffice/idesupport/zip/ParcelZipper.java
Dosyayı görüntüle @
c8286182
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: ParcelZipper.java,v $
*
* $Revision: 1.
6
$
* $Revision: 1.
7
$
*
* last change: $Author: toconnor $ $Date: 2003-02-
12 12:41:50
$
* last change: $Author: toconnor $ $Date: 2003-02-
20 12:03:27
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -207,7 +207,19 @@ public class ParcelZipper
private
boolean
isDirectoryOverwriteNeeded
(
File
parcel
,
File
target
)
{
String
parcelDir
=
getParcelDirFromParcelZip
(
parcel
.
getName
());
File
[]
children
=
target
.
listFiles
();
File
langdir
;
try
{
langdir
=
new
File
(
target
,
getParcelLanguage
(
parcel
));
}
catch
(
IOException
ioe
)
{
return
false
;
}
if
(
langdir
.
exists
()
==
false
)
return
false
;
File
[]
children
=
langdir
.
listFiles
();
for
(
int
i
=
0
;
i
<
children
.
length
;
i
++)
if
(
children
[
i
].
getName
().
equals
(
parcelDir
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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