Skip to content

Commit 7858c73

Browse files
committed
Fix incorrect JavaDoc and crash on Java 17
Related: https://bugs.openjdk.org/browse/JDK-8281944
1 parent f2fca1f commit 7858c73

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

chartjs-java-model/src/main/java/software/xdev/chartjs/model/options/scale/AbstractTickOptions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* Common Tick Options to all axes.
2424
*
25-
* @see <a href="https://www.chartjs.org/docs/latest/axes/#common-tick-options-to-all-axes>ChartJS Docs</a>
25+
* @see <a href="https://www.chartjs.org/docs/latest/axes/#common-tick-options-to-all-axes">ChartJS Docs</a>
2626
* @see <a href="https://github.com/chartjs/Chart.js/blob/v4.4.3/src/types/index.d.ts#L3026">ChartJS source</a>
2727
*/
2828
public abstract class AbstractTickOptions<T extends AbstractTickOptions<T>>

chartjs-java-model/src/main/java/software/xdev/chartjs/model/options/scale/cartesian/linear/LinearTickOptions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* Linear Axis specific tick options
2323
* @see <a href="https://www.chartjs.org/docs/latest/axes/cartesian/linear.html#linear-axis-specific-tick-options">ChartJS Docs</a>
24-
* @see <a href="https://github.com/chartjs/Chart.js/blob/v4.4.3/src/types/index.d.ts#L3283>ChartJS Source</a>
24+
* @see <a href="https://github.com/chartjs/Chart.js/blob/v4.4.3/src/types/index.d.ts#L3283">ChartJS Source</a>
2525
*/
2626
public class LinearTickOptions extends AbstractCartesianTickOptions<LinearTickOptions>
2727
{

chartjs-java-model/src/main/java/software/xdev/chartjs/model/options/scale/cartesian/logarithmic/LogarithmicScaleOptions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* @see <a href="https://www.chartjs.org/docs/latest/axes/cartesian/logarithmic.html">Chart JS</a>
23-
* @see <a href="https://github.com/chartjs/Chart.js/blob/v4.4.3/src/types/index.d.ts#L3312>ChartJS Source</a>
23+
* @see <a href="https://github.com/chartjs/Chart.js/blob/v4.4.3/src/types/index.d.ts#L3312">ChartJS Source</a>
2424
*/
2525
public class LogarithmicScaleOptions
2626
extends AbstractCartesianScaleOptions<LogarithmicScaleOptions, LogarithmicTickOptions>

0 commit comments

Comments
 (0)