Skip to content

2021-October-19 - Prerelease - 2.6.426

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 19 Oct 22:41
7aea658
Checkstyle Config: remove requirement templated types end in 'T' (#9723)

Templated class types will no longer be required to end in a capital 'T'.

As an example, this update allows the generic type names 'Id' and 'Value'
rather than requiring the names 'IdT' and 'ValueT', EG:

```
public interface TtlCache<Id, Value> {
  Optional<Value> get(Id id);
```

versus before:

```
public interface TtlCache<IdT, ValueT> {
  Optional<ValueT> get(IdT id);
```