Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

12345678910
  1. package com.dmdirc.ktirc.util
  2. /**
  3. * Documents when a deprecated feature will be removed.
  4. */
  5. @MustBeDocumented
  6. @Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY, AnnotationTarget.ANNOTATION_CLASS,
  7. AnnotationTarget.CONSTRUCTOR, AnnotationTarget.PROPERTY_SETTER, AnnotationTarget.PROPERTY_GETTER,
  8. AnnotationTarget.TYPEALIAS)
  9. annotation class RemoveIn(val version: String)