no message
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
package _VisualDVM.ProjectData.SapforData.Arrays;
|
||||
import Common.Utils.CommonUtils;
|
||||
import Common.Utils.Utils_;
|
||||
import _VisualDVM.Current;
|
||||
import Common.Database.Objects.DBObject;
|
||||
import Common.Utils.Index;
|
||||
@@ -103,7 +103,7 @@ public class ProjectArray extends DBObject {
|
||||
int numDeclPlaces = Integer.parseInt(localSplited[2]);
|
||||
int idxPl = 3;
|
||||
for (int i = 0; i < numDeclPlaces; ++i, idxPl += 2) {
|
||||
String declFile = CommonUtils.toW(localSplited[idxPl]);
|
||||
String declFile = Utils_.toW(localSplited[idxPl]);
|
||||
DBProjectFile file = Current.getProject().db.files.Data.get(declFile);
|
||||
int declLine = Integer.parseInt(localSplited[idxPl + 1]);
|
||||
//declPlaces.add(new Pair<>(declFile, declLine));
|
||||
@@ -318,7 +318,7 @@ public class ProjectArray extends DBObject {
|
||||
default:
|
||||
break;
|
||||
}
|
||||
res += CommonUtils.ending(i == binary.length() - 1);
|
||||
res += Utils_.ending(i == binary.length() - 1);
|
||||
}
|
||||
}
|
||||
return res;
|
||||
@@ -358,7 +358,7 @@ public class ProjectArray extends DBObject {
|
||||
}
|
||||
@Override
|
||||
public ImageIcon GetDisabledIcon() {
|
||||
return CommonUtils.getIcon("/icons/Arrays/" + State.toString() + ".png");
|
||||
return Utils_.getIcon("/icons/Arrays/" + State.toString() + ".png");
|
||||
}
|
||||
@Override
|
||||
public void select(boolean flag) {
|
||||
|
||||
Reference in New Issue
Block a user