Compare commits
No commits in common. "83efaf25e7011e954a3b64fed78fe6d30e8d2b2c" and "c98fc07e1bcd562775109096f5a767f77347cbba" have entirely different histories.
83efaf25e7
...
c98fc07e1b
2 changed files with 7 additions and 8 deletions
|
@ -19,7 +19,7 @@ I am glad to use the beautiful artwork of David Revoy (http://www.peppercarrot.c
|
||||||
* Source: https://framagit.org/Deevad/cat-avatar-generator
|
* Source: https://framagit.org/Deevad/cat-avatar-generator
|
||||||
* Originally inspired of the code for "MonsterID" by Andreas Gohr http://www.splitbrain.org/go/monsterid.
|
* Originally inspired of the code for "MonsterID" by Andreas Gohr http://www.splitbrain.org/go/monsterid.
|
||||||
|
|
||||||
### Circle-icons
|
### Cicle-icons
|
||||||
|
|
||||||
I am glad to use the generous artwork of ElegantThemes.com :
|
I am glad to use the generous artwork of ElegantThemes.com :
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ I am glad to use the generous artwork of ElegantThemes.com :
|
||||||
|
|
||||||
Author: Christian Pierre MOMON <christian.momon@devinsy.fr>
|
Author: Christian Pierre MOMON <christian.momon@devinsy.fr>
|
||||||
|
|
||||||
License: Creative Commons CC BY-SA last version.
|
License: Creative Commons CC-BY-SA last version.
|
||||||
|
|
||||||
|
|
||||||
### Other stuff
|
### Other stuff
|
||||||
|
@ -39,8 +39,8 @@ License: Creative Commons CC BY-SA last version.
|
||||||
License of other stuff:
|
License of other stuff:
|
||||||
* csv-logo.svg, json-logo.svg, ods-icon.svg:
|
* csv-logo.svg, json-logo.svg, ods-icon.svg:
|
||||||
* Author: Christian P. Momon
|
* Author: Christian P. Momon
|
||||||
* License: CC BY-SA 3+.
|
* License: CC-BY-SA 3+.
|
||||||
* other: without any specific information, default license of images is CC BY-SA 3+.
|
* other: without any specific information, default license of images is CC-BY-SA 3+.
|
||||||
|
|
||||||
|
|
||||||
## DOCUMENTATION
|
## DOCUMENTATION
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2020-2022 Christian Pierre MOMON <christian@momon.org>
|
* Copyright (C) 2020 Christian Pierre MOMON <christian@momon.org>
|
||||||
*
|
*
|
||||||
* This file is part of StatoolInfos, simple service statistics tool.
|
* This file is part of StatoolInfos, simple service statistics tool.
|
||||||
*
|
*
|
||||||
|
@ -162,12 +162,11 @@ public class PropertyStats
|
||||||
|
|
||||||
for (PathProperty property : properties)
|
for (PathProperty property : properties)
|
||||||
{
|
{
|
||||||
String path = property.getPath().toLowerCase();
|
PropertyStat stat = this.stats.get(property.getPath());
|
||||||
PropertyStat stat = this.stats.get(path);
|
|
||||||
|
|
||||||
if (stat == null)
|
if (stat == null)
|
||||||
{
|
{
|
||||||
stat = new PropertyStat(path);
|
stat = new PropertyStat(property.getPath());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (StringUtils.isBlank(property.getValue()))
|
if (StringUtils.isBlank(property.getValue()))
|
||||||
|
|
Loading…
Reference in a new issue