Skip to content

Commit dc20546

Browse files
committed
Fix spaces and tabs
Fix spaces and tabs
1 parent 2aea952 commit dc20546

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

  • src/main/java/com/neuronrobotics/sdk/common

src/main/java/com/neuronrobotics/sdk/common/Log.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -386,15 +386,15 @@ public void init(String message, int importance) {
386386
*/
387387
public String toString() {
388388

389-
// First logfile line
390-
if (lastCallingClass.isEmpty()) {
389+
// First logfile line
390+
if (lastCallingClass.isEmpty()) {
391391
lastCallingClass = "\n[" + dateFormat.format(datetime) + "] ======== Log file opened ========";
392392
dateFormat = new SimpleDateFormat("HH:mm:ss.SS");
393393

394-
return lastCallingClass.toString();
395-
}
394+
return lastCallingClass.toString();
395+
}
396396

397-
if (lastCallingClass.equals(getImportance(importance) + " " + callingClass))
397+
if (lastCallingClass.equals(getImportance(importance) + " " + callingClass))
398398
return getImportanceColor(importance) + " [" + dateFormat.format(datetime) + "] " + message + getColorNormalizationCode();
399399

400400
lastCallingClass = getImportance(importance) + " " + callingClass;

0 commit comments

Comments
 (0)