From f237df110610655595485d10353cff42f97373a0 Mon Sep 17 00:00:00 2001 From: Galapen <105314430+Galapen@users.noreply.github.com> Date: Fri, 24 May 2024 19:53:53 +0100 Subject: [PATCH] fix CloudKey example Fixes the incorrect code that would result in `CloudKey>>`. It could be replaced by the correct arguments, but they are redundant, so the most refined invocation is the empty diamond `<>`. --- docs/processors/requirements.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/processors/requirements.md b/docs/processors/requirements.md index e30e286..ec28182 100644 --- a/docs/processors/requirements.md +++ b/docs/processors/requirements.md @@ -52,7 +52,7 @@ the requirements in the command meta and for the processor to access the stored public static final CloudKey> REQUIREMENT_KEY = CloudKey.of( "requirements", - new TypeToken>>() {} + new TypeToken<>() {} ); ```