Skip to content

Commit

Permalink
lint file
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrkwiecinski committed Jun 28, 2024
1 parent e3308e0 commit 6f001ef
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

package com.magento.idea.magento2plugin.project.startup;

import kotlin.Unit;
import kotlin.coroutines.Continuation;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.startup.StartupActivity;
import com.intellij.openapi.startup.ProjectActivity;
import com.intellij.openapi.startup.StartupActivity;
import com.magento.idea.magento2plugin.init.ConfigurationManager;
import com.magento.idea.magento2plugin.project.Settings;
import com.magento.idea.magento2plugin.util.magento.MagentoBasePathUtil;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

Expand All @@ -38,7 +38,8 @@ public void runActivity(final @NotNull Project project) {

@Nullable
@Override
public Object execute(@NotNull Project project, @NotNull Continuation<? super Unit> continuation) {
public Object execute(@NotNull Project project,
@NotNull Continuation<? super Unit> continuation) {
registerSettings(project);
return null;
}
Expand Down

0 comments on commit 6f001ef

Please sign in to comment.