Add missing Javadocs to License, Media, and Utils classes (#1965)

* Add missing Javadocs to License, Media, and Utils classes
This commit is contained in:
Reid 2018-12-20 16:12:18 -05:00 committed by Adam Jones
parent f521e8886d
commit 809c0c32d7
6 changed files with 43 additions and 2 deletions

View file

@ -50,6 +50,10 @@ public class License {
return template;
}
/**
* Gets the license name. If name is null, return license key.
* @return license name as string. if name null, license key as String
*/
public String getName() {
if (name == null) {
// hack