From 5739ffb0d5d4c8a327aa2ca8a45fbd614a19e152 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Mon, 2 Jul 2012 21:52:51 +0200 Subject: Fixed issue 374: updated documentation about case insensitive checking for existing methods. --- src/core/lombok/Setter.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/lombok/Setter.java') diff --git a/src/core/lombok/Setter.java b/src/core/lombok/Setter.java index ed4c146c..a7318259 100644 --- a/src/core/lombok/Setter.java +++ b/src/core/lombok/Setter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009-2010 The Project Lombok Authors. + * Copyright (C) 2009-2012 The Project Lombok Authors. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -42,8 +42,8 @@ import java.lang.annotation.Target; * } * * - * If any method named {@code setFoo} exists, regardless of return type or parameters, no method is generated, - * and instead a compiler warning is emitted. + * If any method named {@code setFoo} (case insensitive) exists, regardless of return type or parameters, + * no method is generated, and instead a compiler warning is emitted. *

* This annotation can also be applied to a class, in which case it'll be as if all non-static fields that don't already have * a {@code Setter} annotation have the annotation. -- cgit