From 6e5d71b9b4510f832cd84b6ddb43dae039ae466e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20N=C3=BCcke?= Date: Sat, 15 Jan 2022 19:33:44 +0100 Subject: [PATCH] Removed copy-pasted package javadoc. --- .../oc2/api/bus/device/data/package-info.java | 40 ------------------- .../cil/oc2/api/bus/device/package-info.java | 40 ------------------- 2 files changed, 80 deletions(-) diff --git a/src/main/java/li/cil/oc2/api/bus/device/data/package-info.java b/src/main/java/li/cil/oc2/api/bus/device/data/package-info.java index 52a22b96..db39e8e0 100644 --- a/src/main/java/li/cil/oc2/api/bus/device/data/package-info.java +++ b/src/main/java/li/cil/oc2/api/bus/device/data/package-info.java @@ -1,43 +1,3 @@ -/** - * The device bus is the glue that connects devices and VMs. - *

- * A bus must always be managed by a {@link li.cil.oc2.api.bus.DeviceBusController}. - * If there is no controller, there is no (connected) bus. - *

- * When a controller performs a scan, it collects a list of connected - * {@link li.cil.oc2.api.bus.DeviceBusElement}s thus defining a - * {@link li.cil.oc2.api.bus.DeviceBus}. - * How the controller scans for elements depends on the implementation. - * One example is a block-based controller which scans adjacent blocks - * in a recursive manner -- usually up to some maximum bus complexity. - *

- * {@link li.cil.oc2.api.bus.DeviceBusElement}s are responsible for - * providing a list of devices connected to them. Whether they play an - * active role and seek out devices, or passively expect devices to be - * registered with them depends on the implementation implementation. - *

- * After a scan {@link li.cil.oc2.api.bus.DeviceBusController}s then - * collect all devices from all bus elements to build a global set - * of devices on the bus. - *

- * There can be various types of devices on a bus, but which types are - * supported will depend on the context of the controller. Currently two - * types of devices are are defined in this API, {@link li.cil.oc2.api.bus.device.rpc.RPCDevice} - * and {@link li.cil.oc2.api.bus.device.vm.VMDevice}. - *

- */ @ParametersAreNonnullByDefault @MethodsReturnNonnullByDefault package li.cil.oc2.api.bus.device.data; diff --git a/src/main/java/li/cil/oc2/api/bus/device/package-info.java b/src/main/java/li/cil/oc2/api/bus/device/package-info.java index a855dc07..db98c475 100644 --- a/src/main/java/li/cil/oc2/api/bus/device/package-info.java +++ b/src/main/java/li/cil/oc2/api/bus/device/package-info.java @@ -1,43 +1,3 @@ -/** - * The device bus is the glue that connects devices and VMs. - *

- * A bus must always be managed by a {@link li.cil.oc2.api.bus.DeviceBusController}. - * If there is no controller, there is no (connected) bus. - *

- * When a controller performs a scan, it collects a list of connected - * {@link li.cil.oc2.api.bus.DeviceBusElement}s thus defining a - * {@link li.cil.oc2.api.bus.DeviceBus}. - * How the controller scans for elements depends on the implementation. - * One example is a block-based controller which scans adjacent blocks - * in a recursive manner -- usually up to some maximum bus complexity. - *

- * {@link li.cil.oc2.api.bus.DeviceBusElement}s are responsible for - * providing a list of devices connected to them. Whether they play an - * active role and seek out devices, or passively expect devices to be - * registered with them depends on the implementation implementation. - *

- * After a scan {@link li.cil.oc2.api.bus.DeviceBusController}s then - * collect all devices from all bus elements to build a global set - * of devices on the bus. - *

- * There can be various types of devices on a bus, but which types are - * supported will depend on the context of the controller. Currently two - * types of devices are are defined in this API, {@link li.cil.oc2.api.bus.device.rpc.RPCDevice} - * and {@link li.cil.oc2.api.bus.device.vm.VMDevice}. - *

- */ @ParametersAreNonnullByDefault @MethodsReturnNonnullByDefault package li.cil.oc2.api.bus.device;