Skip to content

Commit

Permalink
NOBODY SAW THAT
Browse files Browse the repository at this point in the history
... #123
  • Loading branch information
gdude2002 committed May 22, 2024
1 parent 5e3424c commit 6d2401a
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public open class Arguments {
* @return Argument converter to use as a delegate.
*/
@UnexpectedFunctionBehaviour
public fun <R : Any> arg(
public open fun <R : Any> arg(
displayName: String,
description: String,
converter: SingleConverter<R>,
Expand All @@ -66,7 +66,7 @@ public open class Arguments {
* @return Argument converter to use as a delegate.
*/
@UnexpectedFunctionBehaviour
public fun <R : Any> arg(
public open fun <R : Any> arg(
displayName: String,
description: String,
converter: DefaultingConverter<R>,
Expand All @@ -88,7 +88,7 @@ public open class Arguments {
* @return Argument converter to use as a delegate.
*/
@UnexpectedFunctionBehaviour
public fun <R : Any> arg(
public open fun <R : Any> arg(
displayName: String,
description: String,
converter: OptionalConverter<R>,
Expand All @@ -110,7 +110,7 @@ public open class Arguments {
* @return Argument converter to use as a delegate.
*/
@UnexpectedFunctionBehaviour
public fun <R : Any> arg(
public open fun <R : Any> arg(
displayName: String,
description: String,
converter: ListConverter<R>,
Expand All @@ -132,7 +132,7 @@ public open class Arguments {
* @return Argument converter to use as a delegate.
*/
@UnexpectedFunctionBehaviour
public fun <R : Any> arg(
public open fun <R : Any> arg(
displayName: String,
description: String,
converter: CoalescingConverter<R>,
Expand All @@ -154,7 +154,7 @@ public open class Arguments {
* @return Argument converter to use as a delegate.
*/
@UnexpectedFunctionBehaviour
public fun <R : Any> arg(
public open fun <R : Any> arg(
displayName: String,
description: String,
converter: DefaultingCoalescingConverter<R>,
Expand All @@ -176,7 +176,7 @@ public open class Arguments {
* @return Argument converter to use as a delegate.
*/
@UnexpectedFunctionBehaviour
public fun <R : Any> arg(
public open fun <R : Any> arg(
displayName: String,
description: String,
converter: OptionalCoalescingConverter<R>,
Expand Down

0 comments on commit 6d2401a

Please sign in to comment.