Issue #3743 - Applying changes from PR feedback.

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2019-06-06 17:38:54 -05:00
parent fc97acf1ea
commit 0c23808827
1 changed files with 2 additions and 2 deletions

View File

@ -272,7 +272,7 @@ public class XmlConfiguration
}
}
private String getLocation()
private String toLocation()
{
if (_location == null)
{
@ -296,7 +296,7 @@ public class XmlConfiguration
break;
}
if (_processor == null)
throw new IllegalStateException("Unknown configuration type: " + config.getTag() + " in " + getLocation());
throw new IllegalStateException("Unknown configuration type: " + config.getTag() + " in " + toLocation());
}
else
{