Style: Line length of JavaDoc comment

This commit is contained in:
Lars Simon Winzer
2026-03-15 14:55:43 +01:00
parent 94a2e1f977
commit 0bfcbe95b0
@@ -1,4 +1,7 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.transport;
/** Transport object, created by the transport layer to store raw data about the request prior to any processing */
/**
* Transport object, created by the transport layer to store raw data about the request
* prior to any processing
*/
public record RawPacket(int requestId, String payload) {}