mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 02:25:27 +00:00
14 lines
230 B
Java
14 lines
230 B
Java
import lombok.extern.apachecommons.CommonsLog;
|
|
|
|
@lombok.extern.apachecommons.CommonsLog
|
|
class LoggerCommons {
|
|
}
|
|
|
|
@CommonsLog
|
|
class LoggerCommonsWithImport {
|
|
}
|
|
|
|
@CommonsLog("DifferentName")
|
|
class LoggerCommonsWithDifferentName {
|
|
}
|