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
ec0c4ce0
Kaydet (Commit)
ec0c4ce0
authored
Eki 14, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cid#1326345 Check of thread-shared field evades lock acquisition
Change-Id: I11fc66358c13c6bb1b6f109980384131b38ef18b
üst
1fd4f35f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
DialogFactory.java
...a/com/sun/star/script/framework/browse/DialogFactory.java
+3
-7
No files found.
scripting/java/com/sun/star/script/framework/browse/DialogFactory.java
Dosyayı görüntüle @
ec0c4ce0
...
...
@@ -46,15 +46,12 @@ public class DialogFactory {
// singleton
private
DialogFactory
(
XComponentContext
xComponentContext
)
{
this
.
xComponentContext
=
xComponentContext
;
factory
=
this
;
}
public
static
void
createDialogFactory
(
XComponentContext
xComponentContext
)
{
if
(
factory
==
null
)
{
synchronized
(
DialogFactory
.
class
)
{
if
(
factory
==
null
)
{
factory
=
new
DialogFactory
(
xComponentContext
);
}
synchronized
(
DialogFactory
.
class
)
{
if
(
factory
==
null
)
{
factory
=
new
DialogFactory
(
xComponentContext
);
}
}
}
...
...
@@ -63,7 +60,6 @@ public class DialogFactory {
if
(
factory
==
null
)
{
throw
new
java
.
lang
.
Exception
(
"DialogFactory not initialized"
);
}
return
factory
;
}
...
...
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