Skip to content

Commit

Permalink
Fix Javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Oct 27, 2020
1 parent eac5a54 commit b6a3b37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/**
* A set that is more efficient than HashSet for 0 and 1 elements. Uses {@code Objects.equals} for
* object comparison and a {@link HashSet} for backing storage.
* object comparison and a {@link LinkedHashSet} for backing storage.
*/
public final class MostlySingleton<T extends Object> extends AbstractMostlySingleton<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ public TransferResult<V, S> visitNotEqual(NotEqualNode n, TransferInput<V, S> p)
* twice with {@code firstNode} and {@code secondNode} reversed, to refine each of them.
*
* <p>Note that when overriding this method, when a new type is inserted into the store, {@link
* splitAssignments} should be called, and the new type should be inserted into the store for
* #splitAssignments} should be called, and the new type should be inserted into the store for
* each of the resulting nodes.
*
* @param res the previous result
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@
import javax.lang.model.element.AnnotationMirror;
import org.checkerframework.dataflow.qual.SideEffectFree;

/**
* Converts AnnotationMirrors to Strings. Used when converting AnnotatedTypeMirrors to Strings.
*
* @see org.checkerframework.framework.type.AnnotatedTypeFormatter
*/
/** Converts AnnotationMirrors to Strings. Used when converting AnnotatedTypeMirrors to Strings. */
public interface AnnotationFormatter {

/**
Expand Down

0 comments on commit b6a3b37

Please sign in to comment.