2023-10-25 #242 net.splitcells.dem.data.set.map.Map#put
now throws an exception,
if the key is already present.
This is done, because in this case, there is an increased chance, of a programming bug being present.
If the value of the map should be updated regardless of the presence of the given key,
the method ensurePresence
should be used instead.
2023-07-13 #249 Migrate Java's Path API usage to new FileSystem API,
in order to support operation system unspecific deployment.
2023-07-12 #249 Implement FileSystemViaClassResources in order to provide FileSystem API for class resources.
This can be used in order to provide file systems via jar files.
2023-07-12 #249 Provide file system API in order to not to rely on Paths specific to the operation system.
2023-06-06 #248
- Delete obsolete class
net.splitcells.dem.lang.perspective.PerspectiveXmlRenderer
,
because it was not used.
- Delete obsolete classes
net.splitcells.dem.resource.communication.interaction.Dsui & DsuiTest
,
because it was not used.
- Delete obsolete interface
net.splitcells.dem.resource.communication.interaction.Sui
,
because it has no function anymore as the previous classes were removed.
- Move content of
net.splitcells.dem.resource.communication.interaction
to
net.splitcells.dem.resource.communication.log
,
in order to simplify package structure.
2023-03-25 Set#remove(Object)
will throw an exception,
if the given Object is not present inside the set.
In this case there is a higher probability, that the developer made a programming mistake,
compared to the case, where the to be removed element is really present.
If the developer really intended optionally remove an element of a Set,
the method Set#ensureRemoved(T)
is provided instead.
2023-03-17 Revers priorities of LogLevel
so that LogLevel.DEBUG.smallerThan(LogLevel.ERROR)
returns true
.
2023-02-19 #170: Log if most runtime performant settings are not active.
2023-02-19 #10: Create DescribedBool for assertions with descriptions.
2023-02-02 #170: Create container for arbitrary typed values with a type safe interface.
2023-01-22 #s109 Perspective#toXmlStringWithPrefixes
now renders leaf nodes as normal strings,
if these contain characters that are not allowed in XML element names.
For example, the perspective perspective("test", DEN).withChild(perspective("values.", DEN))
will now be rendered as <d:test>values.</d:test>
,
instead of <d:test><d:val name="values."></d:val></d:test>
.
2022-12-02 #27 When IsEchoToFile
is set to true,
Console
does no longer cancel its output to the standard output.
If IsEchoToFile
is set to true, console output is written to a file and to the standard output.
2022-11-07
- Remove unused methods
CommonFunctions#findSystemOutput
.
- Remove unused methods
CommonFunctions#currentTime
.
- Remove unused methods
CommonFunctions#disableSystemOutput
.
2022-10-10 #8: Create interface Identifiable, in order to be able to correctly implement Object#equals
in wrappers and aspects.
2022-10-10 #196: Files created during execution are now stored at ~/.local/state/<ProgramName>
by default.
The format there should abide by the Software Project File System Standards
2022-06-03 #8: MathUtils#sumsForTarget
now supports generating sums with a given exact number of components.
If this number is 2 for instance, it only returns sums, that contain 2 numbers.
2022-04-18 #162: There is now a default Comparator named naturalComparator
provided for comparable objects in Dem.
2022-04-03 #10: Rename Resource
interface to ResourceOption
and it's ResourceI
implementation to ResourceOptionI
in order to clarify its meaning.
This also makes it possible to use the name Resource
for an interface
of resource like things.