Skip to content

Commit

Permalink
Fixed permaLink default value, should be set to 'true' per the spec: h…
Browse files Browse the repository at this point in the history
  • Loading branch information
fschiettecatte authored and mishako committed Jul 7, 2017
1 parent 3872a0a commit 5a4f334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rome/src/main/java/com/rometools/rome/feed/rss/Guid.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class Guid implements Cloneable, Serializable {
private static final long serialVersionUID = 1L;
private final ObjectBean objBean;
private boolean permaLink;
private boolean permaLink = true;
private String value;

public Guid() {
Expand Down

0 comments on commit 5a4f334

Please sign in to comment.