From dad2361ea75d9198fbf17f8f274c05f00c378898 Mon Sep 17 00:00:00 2001 From: ArghKevin Date: Wed, 8 May 2024 23:06:21 -0700 Subject: Fix Javadoc comments. --- src/FontFamily.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/FontFamily.java') diff --git a/src/FontFamily.java b/src/FontFamily.java index 8e32f05..39fae26 100644 --- a/src/FontFamily.java +++ b/src/FontFamily.java @@ -34,7 +34,7 @@ public class FontFamily { /* popularity.json and families.csv are shared among all families. Have their associated objects passed from outside. */ - /* + /** * Constructor. */ public FontFamily(JSONReader metadata, JSONReader popularity, CSVReader styles) { @@ -44,7 +44,7 @@ public class FontFamily { parseStyles(styles); } - /* + /** * Parse metadata. */ private void parseMetadata(JSONReader metadata) { @@ -56,13 +56,13 @@ public class FontFamily { category = metadata.get("category"); } - /* + /** * Parse popularity. */ private void parsePopularity(JSONReader popularity) { } - /* + /** * Parse styles. */ private void parseStyles(CSVReader styles) { -- cgit v1.2.3