summaryrefslogtreecommitdiff
path: root/src/FontFamily.java
diff options
context:
space:
mode:
authorArghKevin <kagheli@student.sdccd.edu>2024-05-08 23:06:21 -0700
committerArghKevin <kagheli@student.sdccd.edu>2024-05-08 23:06:21 -0700
commitdad2361ea75d9198fbf17f8f274c05f00c378898 (patch)
treee88754bc6802ea9e629ae21595c3cbd6fbaf679e /src/FontFamily.java
parentf9268dd7e0e7a91e7a615bfffe18bceef31eae0d (diff)
Fix Javadoc comments.
Diffstat (limited to 'src/FontFamily.java')
-rw-r--r--src/FontFamily.java8
1 files changed, 4 insertions, 4 deletions
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) {