Files
github-api/src/main/java/org/kohsuke/github/GHVerifiedKey.java
Liam Newman 757b9b2118 Add JavaDocs
Do using IntelliJ JavaDocs plugin. Better to have something than nothing.
2019-11-14 13:24:28 -08:00

20 lines
340 B
Java

package org.kohsuke.github;
/**
* The type GHVerifiedKey.
*/
public class GHVerifiedKey extends GHKey {
/**
* Instantiates a new Gh verified key.
*/
public GHVerifiedKey() {
this.verified = true;
}
@Override
public String getTitle() {
return (title == null ? "key-" + id : title);
}
}