Minor, make AnnotatedImpl not abstract

This commit is contained in:
Alexander Udalov
2018-08-09 13:17:01 +02:00
parent 50270293e3
commit 872f6e2cea
4 changed files with 5 additions and 8 deletions
@@ -18,7 +18,7 @@ package org.jetbrains.kotlin.descriptors.annotations;
import org.jetbrains.annotations.NotNull;
public abstract class AnnotatedImpl implements Annotated {
public class AnnotatedImpl implements Annotated {
private final Annotations annotations;
public AnnotatedImpl(@NotNull Annotations annotations) {