Skip to content

Commit

Permalink
fix: requirements typetoken should not include CloudKey
Browse files Browse the repository at this point in the history
Closes #36.
  • Loading branch information
Citymonstret committed Jun 1, 2024
1 parent b81ab31 commit 685f0a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/processors/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ the requirements in the command meta and for the processor to access the stored
public static final CloudKey<Requirements<YourSenderType, YourRequirementInterface>>
REQUIREMENT_KEY = CloudKey.of(
"requirements",
new TypeToken<CloudKey<Requirements<YourSenderType, YourRequirementInterface>>>() {}
new TypeToken<Requirements<YourSenderType, YourRequirementInterface>>() {}
);
```

Expand Down

0 comments on commit 685f0a4

Please sign in to comment.