Skip to content

Commit 58cc574

Browse files
committed
Corrected the code and Javadoc formatting
1 parent 6cc68f6 commit 58cc574

File tree

1 file changed

+6
-4
lines changed
  • chartjs-java-model/src/main/java/software/xdev/chartjs/model/options

1 file changed

+6
-4
lines changed

chartjs-java-model/src/main/java/software/xdev/chartjs/model/options/Plugins.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,17 @@ public Plugins setTitle(final Title title)
4646
/**
4747
* @see #setSubtitle(Title)
4848
*/
49-
public Title getSubtitle() {
49+
public Title getSubtitle()
50+
{
5051
return this.subtitle;
5152
}
5253

5354
/**
54-
* The subtitle configuration is passed into the options.subtitle namespace. The global options for the chart subtitle is
55-
* defined in Chart.defaults.global.subtitle.
55+
* The subtitle configuration is passed into the options.subtitle namespace. The global options for the chart
56+
* subtitle is defined in Chart.defaults.global.subtitle.
5657
*/
57-
public Plugins setSubtitle(Title subtitle) {
58+
public Plugins setSubtitle(Title subtitle)
59+
{
5860
this.subtitle = subtitle;
5961
return this;
6062
}

0 commit comments

Comments
 (0)