Merge pull request #3013 from kiwix/Issue#3011

Convert IO.java to kotlin
This commit is contained in:
Kelson 2022-09-05 18:01:51 +02:00 committed by GitHub
commit 2125e0bf99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,14 +15,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package org.kiwix.kiwixmobile.core.di.qualifiers
package org.kiwix.kiwixmobile.core.di.qualifiers;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import javax.inject.Qualifier;
import javax.inject.Qualifier
@Qualifier
@Retention(RetentionPolicy.RUNTIME)
public @interface IO {
}
@kotlin.annotation.Retention
annotation class IO