Skip to content
Snippets Groups Projects
Commit 97d81406 authored by Georg Graßnick's avatar Georg Graßnick :thinking:
Browse files

Escape "<" characters in javadoc

parent ad7325ea
No related branches found
No related tags found
1 merge request!6Feat/printable data 8
......@@ -27,7 +27,7 @@ public class SimpleMatrixDataImpl<T> extends AbstractPrintableData implements Ma
* @param rowCount The height of the matrix.
* @param columnCount The width of the matrix.
* @param defaultValue The default value each element will be assigned.
* @throws IllegalArgumentException if rowCount < 0 or columnCount < 0
* @throws IllegalArgumentException if rowCount {@literal <} 0 or columnCount {@literal <} 0
*/
public SimpleMatrixDataImpl(final Printer printer, final Format format, final int rowCount, final int columnCount, final T defaultValue) {
super(printer, format);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment