Skip to content

Commit

Permalink
Merge pull request #18 from RyutaKojima/fix-Deprecated_method_usage
Browse files Browse the repository at this point in the history
ver 0.0.10
  • Loading branch information
RyutaKojima authored Oct 7, 2022
2 parents b63c1d9 + 2e387ae commit 9c79ba4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pluginName_ = FuelPHP support
pluginVersion = 0.0.9
pluginVersion = 0.0.10

platformType = IU
platformVersion = 2021.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class FuelSettings implements PersistentStateComponent<FuelSettings> {
public boolean dismissEnableNotification = false;

public static FuelSettings getInstance(@NotNull Project project) {
return ServiceManager.getService(project, FuelSettings.class);
return project.getService(FuelSettings.class);
}

public String getMainLanguage() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
]]></change-notes>

<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
<idea-version since-build="181"/>
<idea-version since-build="212.5712.43"/>

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
Expand Down

0 comments on commit 9c79ba4

Please sign in to comment.