0
intelliJアルティメットアラインメントについての簡単な質問。IntelliJ Ultimateアラインメントの割り当て整列していない
これらのアライメントが仕事:
exsistingSchedule = new ArrayList<>();
while ((datastring = in.readLine()) != null) {
String data[] = datastring.split(";");
for (String sp : data) {
String regex = "%split%";
String[] timeBlock = sp.split(regex);
String pattern = "dd-MM-yyyy HH:mm";
LocalDateTime startTime = LocalDateTime.parse(timeBlock[0], DateTimeFormat.forPattern(pattern));
LocalDateTime endTime = LocalDateTime.parse(timeBlock[1], DateTimeFormat.forPattern(pattern));
String description = timeBlock[2];
int type = Integer.parseInt(timeBlock[7]);
int splitFactor = 45;
exsistingSchedule.add(
new Timeblock(startTime, endTime, description, null, null, null, null, null, null, null, null, type,
splitFactor));
}
これは揃えされていない、そしてそれは私にナットを駆動です。
public Subject(String title, String description, int ectspoints, String classID) {
this.title = title;
this.description = description;
this.ectspoints = ectspoints;
this.classID = classID;
}
グループのアライメントは全てチェックされている。事実、私はすべてのアライメントオプションをチェックしてみましたが、役に立たなかった。私はこれがうまくいくのが大好きです。 聖なるすべての愛のために私を助けてください。