We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c35064 commit 60103afCopy full SHA for 60103af
1 file changed
src/main/java/org/spdx/library/ListedLicenses.java
@@ -69,11 +69,8 @@ public class ListedLicenses {
69
* This constructor should only be called by the getListedLicenses method
70
*/
71
private ListedLicenses() {
72
- // Note: this code is confusing as this property changed names several times over time, and we want to preserve
73
- // backwards compatibility for those downstream library users who are using the old/deprecated names
74
onlyUseLocalLicenses = Boolean.parseBoolean(Configuration.getInstance().getProperty("org.spdx.useJARLicenseInfoOnly",
75
- Configuration.getInstance().getProperty("SPDXParser.OnlyUseLocalLicenses",
76
- Configuration.getInstance().getProperty("OnlyUseLocalLicenses", "false"))));
+ "false"));
77
initializeLicenseModelStore();
78
}
79
0 commit comments