We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3938b67 commit 088ea45Copy full SHA for 088ea45
core/src/main/java/org/jboss/pnc/build/finder/core/LicenseInfo.java
@@ -22,17 +22,17 @@
22
import org.apache.maven.model.License;
23
24
public class LicenseInfo implements Comparable<LicenseInfo> {
25
- private String comments;
+ private final String comments;
26
27
- private String distribution;
+ private final String distribution;
28
29
- private String name;
+ private final String name;
30
31
- private String url;
+ private final String url;
32
33
private String spdxLicenseId;
34
35
- private String source;
+ private final String source;
36
37
public LicenseInfo(FileObject fileObject, License license) {
38
comments = license.getComments();
0 commit comments