This website works better with JavaScript.
Home
Explore
Help
Sign In
qinyanlei
/
inspect
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
fix:将meter算法值null由“异常”归为“缺陷”
master
yinhuaiwei
2 months ago
parent
a5381fe124
commit
31a7eb02c8
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
inspect-main/inspect-main-task/src/main/java/com/inspect/analysis/utils/ResultAnalysisUtils.java
+ 1
- 1
inspect-main/inspect-main-task/src/main/java/com/inspect/analysis/utils/ResultAnalysisUtils.java
View File
@ -95,7 +95,7 @@ public class ResultAnalysisUtils {
return
;
return
;
}
}
if
(
value
.
isEmpty
(
)
|
|
value
.
equals
(
"-1"
)
)
{
if
(
value
.
isEmpty
(
)
|
|
value
.
equals
(
"-1"
)
|
|
"null"
.
equals
(
value
)
)
{
log
.
info
(
"PARSE_ALG_EMPTY algType: {}, algValue: {}, value: {}, defaultDesc: {}"
,
algType
,
algValue
,
value
,
defaultDesc
)
;
log
.
info
(
"PARSE_ALG_EMPTY algType: {}, algValue: {}, value: {}, defaultDesc: {}"
,
algType
,
algValue
,
value
,
defaultDesc
)
;
resultAnalysis
.
setPointStatus
(
"0"
)
;
resultAnalysis
.
setPointStatus
(
"0"
)
;
resultAnalysis
.
setResultType
(
"2"
)
;
resultAnalysis
.
setResultType
(
"2"
)
;
Write
Preview
Loading…
Cancel
Save