提交 2c9adc99 编写于 作者: B Baptiste Mathus

Merge pull request #2221 from rodrigc/java8_fix1

Do not use '_' as an identifier
......@@ -98,10 +98,10 @@ public class BulkChangeTest {
@Test
public void nestedBulkChange() throws Exception {
Point pt = new Point();
Point _ = new Point();
Point pt2 = new Point();
BulkChange bc1 = new BulkChange(pt);
try {
BulkChange bc2 = new BulkChange(_);
BulkChange bc2 = new BulkChange(pt2);
try {
BulkChange bc3 = new BulkChange(pt);
try {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册