Skip to content

Commit

Permalink
Fixed the import statement order.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaopengjun committed Sep 1, 2024
1 parent 62e38c2 commit 8e27862
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/main/java/com/zhongan/devpilot/util/NewFileUtils.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
package com.zhongan.devpilot.util;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.UUID;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import com.intellij.openapi.command.WriteCommandAction;
import com.intellij.openapi.editor.Editor;
import com.intellij.openapi.fileEditor.FileDocumentManager;
Expand All @@ -27,6 +19,15 @@
import com.zhongan.devpilot.actions.notifications.DevPilotNotification;
import com.zhongan.devpilot.enums.EditorActionEnum;
import com.zhongan.devpilot.webview.model.CodeReferenceModel;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.UUID;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.apache.commons.lang3.StringUtils;
import org.jetbrains.annotations.NotNull;

Expand Down

0 comments on commit 8e27862

Please sign in to comment.