diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2022-03-17 23:30:40 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2022-03-17 23:30:40 +0100 |
commit | 5914aab27bee765347073a169bbec33d1db95789 (patch) | |
tree | 169803b224af97529d10e292f320c767ed3f62f0 /website | |
parent | dbd4151e9ad85e41e4529aa6df4a5dd488336c43 (diff) | |
download | lombok-5914aab27bee765347073a169bbec33d1db95789.tar.gz lombok-5914aab27bee765347073a169bbec33d1db95789.tar.bz2 lombok-5914aab27bee765347073a169bbec33d1db95789.zip |
[#2044] Document problems with non-star static imports and `@UtilityClass`
Diffstat (limited to 'website')
-rw-r--r-- | website/templates/features/experimental/UtilityClass.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/website/templates/features/experimental/UtilityClass.html b/website/templates/features/experimental/UtilityClass.html index c5f51e29..915fe5c9 100644 --- a/website/templates/features/experimental/UtilityClass.html +++ b/website/templates/features/experimental/UtilityClass.html @@ -11,9 +11,11 @@ <ul> <li> Some debate as to whether its common enough to count as boilerplate. + </li><li> + Due to limitations in javac, currently non-star static imports <em>cannot</em> be used to import stuff from <code>@UtilityClass</code>es; don't static import, or use star imports. </li> </ul> - Current status: <em>positive</em> - Currently we feel this feature may move out of experimental status with no or minor changes soon. + Current status: <em>negative</em> - Currently we feel this feature cannot move out of experimental status due to fundamental issues with non-star static imports. </@f.experimental> <@f.overview> |