0

我正在使用日食。我有一个应该在 android 画布上绘制一些图像的 java 方法(我真的不认为这个背景故事是相关的,但谁知道)。由于我的方法不符合预期,我决定出道。我的方法如下所示:

List<Stuff> myStuff = …

public Point methodName(Point offset, other params){
    final int nStuff = myStuff.size();

    if (null == myStuff || myStuff.isEmpty() || nStuff > offset.x) {
            return offset;
    }

    //bunch of lines that eclipse completely skip go here
    //here is first of skipped lines
    LinearLayout view = (LinearLayout) mInflater.inflate(R.layout.my_view, null);


    //eclipse goes all the way down to here
    return offset;

}

我的发现让我大吃一惊。出于现在显而易见的原因,eclipse 只是跳过了我的代码中的一些行。我只是跳过它们。没有错误。没有什么。只是跳过。

现在,我以前从未见过这种情况。并且跳过是一致的:从第 252 行到第 293 行。

4

0 回答 0