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
b82cc80e
Kaydet (Commit)
b82cc80e
authored
Ara 22, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
java: NO_CWS_ATTACH parameter is unused
Change-Id: I3e465987ef3dd502faecaf3c5ce151013a5bf314
üst
7e394e77
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
21 deletions
+9
-21
ClParser.java
qadevOOo/runner/helper/ClParser.java
+0
-1
PropertyName.java
qadevOOo/runner/util/PropertyName.java
+0
-6
CheckModuleAPI.java
qadevOOo/tests/java/complex/unoapi/CheckModuleAPI.java
+9
-14
No files found.
qadevOOo/runner/helper/ClParser.java
Dosyayı görüntüle @
b82cc80e
...
...
@@ -161,7 +161,6 @@ public class ClParser
COMMAND_LINE_OPTION_TO_TEST_PARAMETER
.
put
(
"-debug"
,
"DebugIsActive"
);
COMMAND_LINE_OPTION_TO_TEST_PARAMETER
.
put
(
"-log"
,
"LoggingIsActive"
);
COMMAND_LINE_OPTION_TO_TEST_PARAMETER
.
put
(
"-dbout"
,
"DataBaseOut"
);
COMMAND_LINE_OPTION_TO_TEST_PARAMETER
.
put
(
"-nca"
,
"NoCwsAttach"
);
}
private
String
getParameterFor
(
String
name
)
...
...
qadevOOo/runner/util/PropertyName.java
Dosyayı görüntüle @
b82cc80e
...
...
@@ -143,12 +143,6 @@ public interface PropertyName {
* environment
*/
String
CYGWIN
=
"Cygwin"
;
/**
* parameter name: "NoCwsAttach"<p>
* If this parameter is set to "true" , a status of CWS-UnoAPI-Tests was not attached to EIS<p>
* @see complex.unoapi.CheckModuleAPI
*/
String
NO_CWS_ATTACH
=
"NoCwsAttach"
;
/**
* internal only, no parameter
*/
...
...
qadevOOo/tests/java/complex/unoapi/CheckModuleAPI.java
Dosyayı görüntüle @
b82cc80e
...
...
@@ -530,23 +530,18 @@ public class CheckModuleAPI extends ComplexTestCase
private
void
setUnoApiCwsStatus
(
boolean
status
)
{
if
(
!
param
.
getBool
(
PropertyName
.
NO_CWS_ATTACH
))
final
String
version
=
(
String
)
param
.
get
(
PropertyName
.
VERSION
);
if
(
version
.
startsWith
(
"cws_"
))
{
final
String
version
=
(
String
)
param
.
get
(
PropertyName
.
VERSION
);
if
(
version
.
startsWith
(
"cws_"
))
try
{
try
{
final
CwsDataExchangeImpl
cde
=
new
CwsDataExchangeImpl
(
param
,
log
);
cde
.
setUnoApiCwsStatus
(
status
);
}
catch
(
ParameterNotFoundException
ex
)
{
log
.
println
(
"ERROR: could not wirte status to EIS database: "
+
ex
.
toString
());
}
final
CwsDataExchangeImpl
cde
=
new
CwsDataExchangeImpl
(
param
,
log
);
cde
.
setUnoApiCwsStatus
(
status
);
}
catch
(
ParameterNotFoundException
ex
)
{
log
.
println
(
"ERROR: could not wirte status to EIS database: "
+
ex
.
toString
());
}
}
}
...
...
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