Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support kotlinc warnings #44

Closed
scottkennedy opened this issue Sep 20, 2018 · 5 comments
Closed

Support kotlinc warnings #44

scottkennedy opened this issue Sep 20, 2018 · 5 comments

Comments

@scottkennedy
Copy link

I see there's some parsing of other compiler outputs, so I figure it wouldn't be too difficult to add this.

Example:
w: /Users/scottkennedy/project/src/main/java/com/example/Test.kt: (13, 87): Elvis operator (?:) always returns the left operand of non-nullable type String

@tomasbjerre
Copy link
Owner

Do you have more examples?

@tomasbjerre
Copy link
Owner

I found this issue: kerubistan/kerub#19 where the warnings has a different format:

/home/kocka/sources/kerub/src/test/kotlin/com/github/K0zka/kerub/host/ControllerManagerImplTest.kt
Warning:(34, 9) Kotlin: Variable 'controllerDynamic' is never used
/home/kocka/sources/kerub/src/test/kotlin/com/github/K0zka/kerub/host/HostCapabilitiesDiscovererTest.kt
Warning:(98, 45) Kotlin: Elvis operator (?:) always returns the left operand of non-nullable type kotlin.Long
Warning:(98, 53) Kotlin: Unnecessary safe call on a non-null receiver of type kotlin.String
Warning:(98, 63) Kotlin: Unnecessary safe call on a non-null receiver of type kotlin.Int
Warning:(153, 42) Kotlin: This syntax for lambda is deprecated. Use short lambda notation {a[: Int], b[: String] -> ...} or function expression instead.
Warning:(175, 7) Kotlin: Variable 'host' is never used
Warning:(181, 48) Kotlin: Unnecessary non-null assertion (!!) on a non-null receiver of type com.github.K0zka.kerub.host.HostCapabilitiesDiscoverer
Warning:(183, 40) Kotlin: Unnecessary safe call on a non-null receiver of type com.github.K0zka.kerub.model.HostCapabilities
Warning:(184, 45) Kotlin: Unnecessary safe call on a non-null receiver of type com.github.K0zka.kerub.model.HostCapabilities
/home/kocka/sources/kerub/src/test/kotlin/com/github/K0zka/kerub/host/SshClientUtilsTest.kt
Warning:(54, 37) Kotlin: This syntax for lambda is deprecated. Use short lambda notation {a[: Int], b[: String] -> ...} or function expression instead.
Warning:(64, 33) Kotlin: This syntax for lambda is deprecated. Use short lambda notation {a[: Int], b[: String] -> ...} or function expression instead.
/home/kocka/sources/kerub/src/test/kotlin/com/github/K0zka/kerub/hypervisor/kvm/UtilsTest.kt
Warning:(25, 7) Kotlin: Variable 'dom' is never used
/home/kocka/sources/kerub/src/test/kotlin/com/github/K0zka/kerub/utils/junix/dmi/DmiDecoderTest.kt
Warning:(127, 7) Kotlin: Variable 'devices' is never used

@scottkennedy
Copy link
Author

I'll post some more when I'm at work tomorrow, but that issue is from 3 years ago, so it's possible the format changed at some point. For reference, I'm using Kotlin 1.2.70.

@tomasbjerre
Copy link
Owner

The Kerub-project also uses 1.2.70. I compiled the code from master and got a third format. I guess it can be the Maven Kotlin Plugin that decides the format.

[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/TestUtils.kt: (20, 12) Parameter 'message' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/TestUtils.kt: (32, 12) Unchecked cast: kotlin.Exception /* = java.lang.Exception */ to T
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/data/ispn/IspnConfigurationTest.kt: (18, 7) Variable 'ispnConfig' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/data/ispn/IspnConfigurationTest.kt: (19, 7) Variable 'globalConfig' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/data/ispn/JsonMarshallerTest.kt: (40, 17) Unnecessary non-null assertion (!!) on a non-null receiver of type ObjectMapper
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/data/ispn/utils/CountdownCreateEventListener.kt: (17, 13) Parameter 'event' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/host/ControllerAssignerImplTest.kt: (73, 7) Variable 'assignment' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/host/ControllerManagerImplTest.kt: (31, 7) Variable 'notNullInstance' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/host/ControllerManagerImplTest.kt: (34, 10) Variable 'controllerDynamic' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/host/SshClientUtilsTest.kt: (57, 73) Parameter 'serverSession' is never used, could be renamed to _
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/host/SshClientUtilsTest.kt: (67, 33) Parameter 'clientSession' is never used, could be renamed to _
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/host/SshClientUtilsTest.kt: (67, 63) Parameter 'socketAddress' is never used, could be renamed to _
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/host/SshClientUtilsTest.kt: (67, 93) Parameter 'publicKey' is never used, could be renamed to _
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/jackson/JacksonFuckIT.kt: (25, 45) Condition 'it == null' is always 'false'
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/issues/violations/vm/MemoryClockFrequencyExpectationViolationDetectorTest.kt: (39, 8) Variable 'host' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/CompositeStepFactoryTest.kt: (58, 7) Variable 'steps' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/StepCostComparatorTest.kt: (36, 7) Variable 'original' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/ksm/DisableKsmExecutorTest.kt: (32, 38) Variable 'updatedHostDyn' initializer is redundant
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/ksm/DisableKsmExecutorTest.kt: (35, 38) Unchecked cast: Any! to (HostDynamic) -> HostDynamic
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/security/clear/ClearSshKeyExecutorTest.kt: (27, 21) Unchecked cast: Any! to (ClientSession) -> Any
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/security/clear/ClearSshKeyExecutorTest.kt: (30, 35) Unchecked cast: Any! to (HostConfiguration) -> HostConfiguration
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/security/generate/GenerateSshKeyExecutorTest.kt: (37, 21) Unchecked cast: Any! to (ClientSession) -> String
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/security/generate/GenerateSshKeyExecutorTest.kt: (41, 35) Unchecked cast: Any! to (HostConfiguration) -> HostConfiguration
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/security/install/InstallPublicKeyExecutorTest.kt: (31, 21) Unchecked cast: Any! to (ClientSession) -> Any
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/security/install/InstallPublicKeyExecutorTest.kt: (35, 21) Unchecked cast: Any! to (ClientSession) -> Any
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/security/install/InstallPublicKeyExecutorTest.kt: (39, 31) Unchecked cast: Any! to () -> HostConfiguration
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/security/install/InstallPublicKeyExecutorTest.kt: (40, 21) Unchecked cast: Any! to (HostConfiguration) -> HostConfiguration
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/security/remove/RemovePublicKeyExecutorTest.kt: (33, 21) Unchecked cast: Any! to (ClientSession) -> Any
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/host/security/remove/RemovePublicKeyExecutorTest.kt: (37, 41) Unchecked cast: Any! to (HostConfiguration) -> HostConfiguration
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vm/start/kvm/KvmStartVirtualMachineExecutorTest.kt: (76, 21) Unchecked cast: Any! to (ClientSession) -> Any
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/fs/create/CreateImageExecutorTest.kt: (63, 23) Unchecked cast: Any! to (ClientSession) -> ImageInfo
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/fs/fallocate/FallocateImageExecutorTest.kt: (31, 21) Unchecked cast: Any! to (ClientSession) -> Any
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/fs/fallocate/FallocateImageExecutorTest.kt: (39, 34) Unchecked cast: Any! to (VirtualStorageDeviceDynamic) -> VirtualStorageDeviceDynamic
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/fs/truncate/TruncateImageExecutorTest.kt: (34, 23) Unchecked cast: Any! to (ClientSession) -> Any
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/fs/truncate/TruncateImageExecutorTest.kt: (37, 35) Unchecked cast: Any! to (UUID) -> VirtualStorageDeviceDynamic
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/fs/truncate/TruncateImageExecutorTest.kt: (38, 38) Unchecked cast: Any! to (VirtualStorageDeviceDynamic) -> VirtualStorageDeviceDynamic
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/fs/unallocate/UnAllocateFsExecutorTest.kt: (28, 21) Unchecked cast: Any! to (ClientSession) -> Unit
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/gvinum/unallocate/UnAllocateGvinumExecutorTest.kt: (32, 21) Unchecked cast: Any! to (ClientSession) -> Unit
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/lvm/create/CreateThinLvExecutorTest.kt: (55, 21) Unchecked cast: Any! to (ClientSession) -> Any
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/lvm/pool/create/CreateLvmPoolExecutorTest.kt: (48, 31) Unchecked cast: Any! to (ClientSession) -> LogicalVolume
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/lvm/pool/create/CreateLvmPoolExecutorTest.kt: (77, 31) Unchecked cast: Any! to (UUID) -> HostConfiguration
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/lvm/pool/create/CreateLvmPoolExecutorTest.kt: (78, 21) Unchecked cast: Any! to (HostConfiguration) -> HostConfiguration
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/lvm/pool/extend/ExtendLvmPoolExecutorTest.kt: (77, 35) Unchecked cast: Any! to (ClientSession) -> Pair<BigInteger, BigInteger>
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/lvm/pool/remove/RemoveLvmPoolExecutorTest.kt: (88, 21) Unchecked cast: Any! to (ClientSession) -> Any
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/lvm/pool/remove/RemoveLvmPoolExecutorTest.kt: (92, 48) Unchecked cast: Any! to (HostConfiguration) -> HostConfiguration
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/lvm/pool/remove/RemoveLvmPoolExecutorTest.kt: (98, 42) Unchecked cast: Any! to (HostDynamic) -> HostDynamic
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/lvm/unallocate/UnAllocateLvExecutorTest.kt: (32, 21) Unchecked cast: Any! to (ClientSession) -> Unit
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/mount/MountNfsExecutorTest.kt: (36, 21) Unchecked cast: Any! to (ClientSession) -> Unit
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/mount/MountNfsExecutorTest.kt: (42, 37) Unchecked cast: Any! to (HostConfiguration) -> HostConfiguration
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/mount/UnmountNfsExecutorTest.kt: (41, 21) Unchecked cast: Any! to (ClientSession) -> Unit
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/mount/UnmountNfsExecutorTest.kt: (47, 21) Unchecked cast: Any! to (HostConfiguration) -> HostConfiguration
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/share/iscsi/tgtd/TgtdIscsiUnshareExecutorTest.kt: (61, 44) Unchecked cast: Any! to (HostConfiguration) -> HostConfiguration
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/share/iscsi/tgtd/TgtdIscsiUnshareExecutorTest.kt: (70, 21) Unchecked cast: Any! to (ClientSession) -> Any
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/share/nfs/ShareNfsExecutorTest.kt: (30, 21) Unchecked cast: Any! to (ClientSession) -> Unit
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/share/nfs/UnshareNfsExecutorTest.kt: (31, 21) Unchecked cast: Any! to (ClientSession) -> Unit
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/planner/steps/vstorage/share/nfs/UnshareNfsFactoryTest.kt: (87, 8) Variable 'vm' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/security/AssetAccessControllerImplTest.kt: (55, 7) Variable 'someoneElsesVm' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/services/exc/mappers/JsonParseExceptionMapperTest.kt: (13, 76) 'constructor JsonParseException(String!, JsonLocation!)' is deprecated. Deprecated in Java
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/services/impl/HostServiceImplTest.kt: (57, 49) Elvis operator (?:) always returns the left operand of non-nullable type String
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/services/impl/StatisticsServiceImplTest.kt: (34, 7) Variable 'info' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/services/impl/TemplateServiceImplTest.kt: (54, 22) Unchecked cast: Any! to () -> Asset
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/services/impl/UsageStatisticsServiceIT.kt: (34, 7) Variable 'report' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/services/impl/VirtualMachineServiceImplTest.kt: (41, 85) Unchecked cast: Any! to () -> Asset
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/services/impl/VirtualMachineServiceImplTest.kt: (42, 93) Unchecked cast: Any! to () -> Asset
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/services/impl/VirtualMachineServiceImplTest.kt: (62, 85) Unchecked cast: Any! to () -> Asset
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/services/impl/VirtualMachineServiceImplTest.kt: (63, 93) Unchecked cast: Any! to () -> Asset
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/socket/SocketListener.kt: (38, 14) Parameter 'session' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/authorization/AuthorizationDefs.kt: (264, 8) Variable 'id' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/authorization/AuthorizationDefs.kt: (349, 10) Unchecked cast: Any? to Map<String, String>
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/authorization/AuthorizationDefs.kt: (379, 26) Unchecked cast: Any? to Map<String, Any>
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/authorization/AuthorizationDefs.kt: (387, 41) Unchecked cast: KClass<VirtualMachineService> to KClass<RestCrud<Entity<UUID>>>
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/authorization/AuthorizationDefs.kt: (388, 57) Unchecked cast: KClass<VirtualStorageDeviceService> to KClass<RestCrud<Entity<UUID>>>
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/authorization/AuthorizationDefs.kt: (389, 54) Unchecked cast: KClass<VirtualNetworkService> to KClass<RestCrud<Entity<UUID>>>
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/authorization/AuthorizationDefs.kt: (397, 7) Variable 'serviceClient' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/authorization/AuthorizationDefs.kt: (439, 42) Parameter 'able' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/authorization/AuthorizationDefs.kt: (439, 56) Parameter 'type' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/authorization/AuthorizationDefs.kt: (461, 16) Parameter 'session' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/planner/PlannerDefs.kt: (457, 38) Parameter 'host' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/planner/PlannerDefs.kt: (462, 13) Parameter 'vmstatus' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/planner/PlannerDefs.kt: (557, 58) Parameter 'stat' is never used, could be renamed to _
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/planner/PlannerDefs.kt: (557, 64) Parameter 'dyn' is never used, could be renamed to _
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/planner/PlannerDefs.kt: (570, 58) Parameter 'stat' is never used, could be renamed to _
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/planner/PlannerDefs.kt: (582, 58) Parameter 'stat' is never used, could be renamed to _
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/planner/PlannerDefs.kt: (582, 64) Parameter 'dyn' is never used, could be renamed to _
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/planner/PlannerDefs.kt: (682, 69) Parameter 'diskNames' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/planner/PlannerDefs.kt: (695, 81) Parameter 'diskName' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/planner/PlannerDefs.kt: (873, 23) Parameter 'hostAddr' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/planner/PlannerDefs.kt: (878, 26) Parameter 'hostAddr' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/websocket/WebsocketNotificationsDefs.kt: (85, 15) Parameter 'session' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/stories/websocket/WebsocketNotificationsDefs.kt: (174, 16) Unchecked cast: Any to RestCrud<Entity<UUID>>
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/utils/EthernetUtilsKtTest.kt: (17, 7) Variable 'mac' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/utils/EthernetUtilsKtTest.kt: (22, 7) Variable 'mac' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/utils/ObjectMapperUtilsKtTest.kt: (15, 7) Variable 'againDeserialized' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/utils/ipmi/IOUtilsKtTest.kt: (21, 21) Unchecked cast: Any! to GenericFutureListener<ChannelFuture>
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/utils/junix/benchmarks/fio/FioTest.kt: (33, 7) Variable 'rand' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/utils/junix/lshw/LshwTest.kt: (10, 24) 'Assert' is deprecated. Deprecated in Java
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/utils/junix/lshw/LshwTest.kt: (20, 7) Variable 'system' is never used
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/utils/junix/virt/virsh/VirshTest.kt: (18, 20) 'Matchers' is deprecated. Deprecated in Java
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/utils/junix/virt/virsh/VirshTest.kt: (39, 38) 'Matchers' is deprecated. Deprecated in Java
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/utils/junix/virt/virsh/VirshTest.kt: (95, 47) 'Matchers' is deprecated. Deprecated in Java
[WARNING] /home/bjerre/workspace/kerub/src/test/kotlin/com/github/kerubistan/kerub/utils/junix/virt/virsh/VirshTest.kt: (106, 47) 'Matchers' is deprecated. Deprecated in Java

@tomasbjerre
Copy link
Owner

This is now released in all plugins.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants