Skip to content

Commit

Permalink
Renamed vars
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Oct 9, 2024
1 parent 0a6bb76 commit 45c7477
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions phase4-lib/src/main/java/com/helger/phase4/CAS4Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ public final class CAS4Version
{
String sProjectVersion = null;
String sProjectTimestamp = null;
final ICommonsMap <String, String> p = PropertiesHelper.loadProperties (new ClassPathResource ("phase4-version.properties",
CAS4Version.class.getClassLoader ()));
if (p != null)
final ICommonsMap <String, String> aProps = PropertiesHelper.loadProperties (new ClassPathResource ("phase4-version.properties",
CAS4Version.class.getClassLoader ()));
if (aProps != null)
{
sProjectVersion = p.get ("version");
sProjectTimestamp = p.get ("timestamp");
sProjectVersion = aProps.get ("version");
sProjectTimestamp = aProps.get ("timestamp");
}
if (sProjectVersion == null)
{
Expand Down

0 comments on commit 45c7477

Please sign in to comment.