Merge branch 'fix/81-incorrect-visibility-of-throwingparser' into 'main'

Change visibility of ThrowingParser from package-private to public

Closes #81

See merge request cs108-fs26/Gruppe-13!94
This commit was merged in pull request #250.
This commit is contained in:
Lars Simon Winzer
2026-04-10 11:30:22 +02:00
@@ -6,7 +6,7 @@ package ch.unibas.dmi.dbis.cs108.casono.server.network.protocol.request.accessor
* @param <T> target type produced by the parser
*/
@FunctionalInterface
interface ThrowingParser<T> {
public interface ThrowingParser<T> {
/**
* Parses the provided raw parameter value.
*