diff options
author | Michael Ernst <mernst@cs.washington.edu> | 2022-11-03 09:27:20 -0700 |
---|---|---|
committer | Michael Ernst <mernst@cs.washington.edu> | 2022-11-03 09:27:20 -0700 |
commit | 48cf83128a646c71197e8c64b20db63fb88e1174 (patch) | |
tree | 46e8c1cc3210a0dd74f53708dc4f4d294b0237fa /src/core/lombok | |
parent | 91a511bbb70564c5b9aa5f7c1fa3dab3de22602b (diff) | |
download | lombok-48cf83128a646c71197e8c64b20db63fb88e1174.tar.gz lombok-48cf83128a646c71197e8c64b20db63fb88e1174.tar.bz2 lombok-48cf83128a646c71197e8c64b20db63fb88e1174.zip |
Typo fixes
Diffstat (limited to 'src/core/lombok')
-rw-r--r-- | src/core/lombok/core/handlers/HandlerUtil.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lombok/core/handlers/HandlerUtil.java b/src/core/lombok/core/handlers/HandlerUtil.java index 312d34d3..5e68f619 100644 --- a/src/core/lombok/core/handlers/HandlerUtil.java +++ b/src/core/lombok/core/handlers/HandlerUtil.java @@ -140,7 +140,7 @@ public class HandlerUtil { "androidx.annotation.RecentlyNullable", "com.android.annotations.NonNull", "com.android.annotations.Nullable", - // "com.google.api.server.spi.config.Nullable", - let's think about this one a litte, as it is targeted solely at parameters, so you can't even put it on fields. If we choose to support it, we should REMOVE it from the field, then - that's not something we currently support. + // "com.google.api.server.spi.config.Nullable", - let's think about this one a little, as it is targeted solely at parameters, so you can't even put it on fields. If we choose to support it, we should REMOVE it from the field, then - that's not something we currently support. "com.google.firebase.database.annotations.NotNull", "com.google.firebase.database.annotations.Nullable", "com.mongodb.lang.NonNull", @@ -197,7 +197,7 @@ public class HandlerUtil { // Checker Framework annotations. // To update Checker Framework annotations, run: // grep --recursive --files-with-matches -e '^@Target\b.*TYPE_USE' $CHECKERFRAMEWORK/checker/src/main/java $CHECKERFRAMEWORK/checker-qual/src/main/java $CHECKERFRAMEWORK/checker-util/src/main/java $CHECKERFRAMEWORK/framework/src/main/java | grep '\.java$' | sed 's/.*\/java\//\t\t\t"/' | sed 's/\.java$/",/' | sed 's/\//./g' | sort - // Only add new annotations, do not remove annotations that have been removed from the lastest version of the Checker Framework. + // Only add new annotations, do not remove annotations that have been removed from the latest version of the Checker Framework. "org.checkerframework.checker.builder.qual.CalledMethods", "org.checkerframework.checker.builder.qual.NotCalledMethods", "org.checkerframework.checker.calledmethods.qual.CalledMethods", |