You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RemoveIn.kt 433B

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)