diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-11-19 10:26:29 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-11-19 10:26:29 +0100 |
commit | 16a24525bf8c40549ded60678a4c4ec25fce35c5 (patch) | |
tree | 6d6545a22522debd94b944c1472671392ee849c1 /src/eclipseAgent | |
parent | ffedb71cb52e32657d0426ef667f701a88f3fb9a (diff) | |
download | lombok-16a24525bf8c40549ded60678a4c4ec25fce35c5.tar.gz lombok-16a24525bf8c40549ded60678a4c4ec25fce35c5.tar.bz2 lombok-16a24525bf8c40549ded60678a4c4ec25fce35c5.zip |
Fix for reported NPEs by Stephen Haberman.
Diffstat (limited to 'src/eclipseAgent')
-rw-r--r-- | src/eclipseAgent/lombok/eclipse/agent/PatchVal.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/eclipseAgent/lombok/eclipse/agent/PatchVal.java b/src/eclipseAgent/lombok/eclipse/agent/PatchVal.java index 84f03115..b93fc4f1 100644 --- a/src/eclipseAgent/lombok/eclipse/agent/PatchVal.java +++ b/src/eclipseAgent/lombok/eclipse/agent/PatchVal.java @@ -18,6 +18,8 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. + * + * Thanks to Stephen Haberman for a patch to solve some NPEs in Eclipse. */ package lombok.eclipse.agent; @@ -262,6 +264,7 @@ public class PatchVal { } else return false; TypeBinding component = getForEachComponentType(forEach.collection, scope); + if (component == null) return false; TypeReference replacement = Eclipse.makeType(component, forEach.elementVariable.type, false); forEach.elementVariable.modifiers |= ClassFileConstants.AccFinal; @@ -274,6 +277,7 @@ public class PatchVal { private static TypeBinding getForEachComponentType(Expression collection, BlockScope scope) { if (collection != null) { TypeBinding resolved = collection.resolveType(scope); + if (resolved == null) return null; if (resolved.isArrayType()) { resolved = ((ArrayBinding) resolved).elementsType(); return resolved; |