From eebc5f4e851a4ce6f2775ebaf6e74794480da0b9 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Fri, 5 Mar 2021 06:07:05 +0100 Subject: [javac6] replacing calls to ListBuffer add/addAll to the append variants; add/addAll do not work in j6. --- src/utils/lombok/javac/java8/CommentCollectingTokenizer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/utils/lombok') diff --git a/src/utils/lombok/javac/java8/CommentCollectingTokenizer.java b/src/utils/lombok/javac/java8/CommentCollectingTokenizer.java index d7b1d569..7f296d83 100644 --- a/src/utils/lombok/javac/java8/CommentCollectingTokenizer.java +++ b/src/utils/lombok/javac/java8/CommentCollectingTokenizer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2013-2020 The Project Lombok Authors. + * Copyright (C) 2013-2021 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 @@ -61,7 +61,7 @@ class CommentCollectingTokenizer extends JavaTokenizer { prevEndPosition = pos(); if (textBlockStarts != null && (prevEndPosition - token.pos > 5) && token.getClass().getName().endsWith("$StringToken")) { char[] start = reader.getRawCharacters(token.pos, token.pos + 3); - if (start[0] == '"' && start[1] == '"' && start[2] == '"') textBlockStarts.add(token.pos); + if (start[0] == '"' && start[1] == '"' && start[2] == '"') textBlockStarts.append(token.pos); } return token; } -- cgit