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
44140757
Kaydet (Commit)
44140757
authored
Haz 09, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
java:Non-synchronized method should not override a synchronized method
Change-Id: I46307828757ee1142747c14d2942515340083605
üst
0f2007b1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
16 deletions
+5
-16
OOoViewer.java
bean/test/applet/oooapplet/OOoViewer.java
+1
-1
XInputStreamToInputStreamAdapter.java
...tar/lib/uno/adapter/XInputStreamToInputStreamAdapter.java
+2
-2
Loader.java
odk/source/com/sun/star/lib/loader/Loader.java
+1
-1
AccessibilityTreeModel.java
toolkit/test/accessibility/AccessibilityTreeModel.java
+1
-12
No files found.
bean/test/applet/oooapplet/OOoViewer.java
Dosyayı görüntüle @
44140757
...
...
@@ -142,7 +142,7 @@ final class CustomURLClassLoader extends URLClassLoader {
@Override
protected
Class
<?>
loadClass
(
String
name
,
boolean
resolve
)
protected
synchronized
Class
<?>
loadClass
(
String
name
,
boolean
resolve
)
throws
ClassNotFoundException
{
Class
c
=
findLoadedClass
(
name
);
...
...
javaunohelper/com/sun/star/lib/uno/adapter/XInputStreamToInputStreamAdapter.java
Dosyayı görüntüle @
44140757
...
...
@@ -206,12 +206,12 @@ public final class XInputStreamToInputStreamAdapter extends InputStream {
}
@Override
public
void
mark
(
int
readlimit
)
{
public
synchronized
void
mark
(
int
readlimit
)
{
// Not supported.
}
@Override
public
void
reset
()
throws
IOException
{
public
synchronized
void
reset
()
throws
IOException
{
// Not supported.
}
}
...
...
odk/source/com/sun/star/lib/loader/Loader.java
Dosyayı görüntüle @
44140757
...
...
@@ -307,7 +307,7 @@ public final class Loader {
}
@Override
protected
Class
<?>
loadClass
(
String
name
,
boolean
resolve
)
protected
synchronized
Class
<?>
loadClass
(
String
name
,
boolean
resolve
)
throws
ClassNotFoundException
{
Class
c
=
findLoadedClass
(
name
);
...
...
toolkit/test/accessibility/AccessibilityTreeModel.java
Dosyayı görüntüle @
44140757
...
...
@@ -106,7 +106,7 @@ public class AccessibilityTreeModel
the child and add the child to the canvas.
*/
@Override
public
Object
getChild
(
Object
aParent
,
int
nIndex
)
public
synchronized
Object
getChild
(
Object
aParent
,
int
nIndex
)
{
AccessibleTreeNode
aChild
=
(
AccessibleTreeNode
)
super
.
getChild
(
aParent
,
nIndex
);
...
...
@@ -119,17 +119,6 @@ public class AccessibilityTreeModel
return
aChild
;
}
@Override
public
Object
getChildNoCreate
(
Object
aParent
,
int
nIndex
)
{
AccessibleTreeNode
aChild
=
(
AccessibleTreeNode
)
super
.
getChildNoCreate
(
aParent
,
nIndex
);
return
aChild
;
}
/** Remove a node (and all children) from the tree model.
*/
private
boolean
removeChild
(
AccessibleTreeNode
aNode
)
...
...
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