Skip to content

Commit

Permalink
Upgrade to build again with more recent versions of intellij plugin g…
Browse files Browse the repository at this point in the history
…radle tool.
  • Loading branch information
Layoric committed Sep 17, 2024
1 parent fca7a47 commit 6eaf821
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# ServiceStackIDEA Changelog

## [Unreleased]
- Fix issues from verifier
## [1.4.0]
- Add support for PHPStorm and Add ServiceStack Reference
- Resolve some issues with IntelliJ context menus
## [1.3.4]
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

pluginGroup = ServiceStackIDEA
pluginName = ServiceStack
pluginVersion = 1.4.0
pluginVersion = 1.4.1

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/net/servicestack/idea/common/Analytics.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URI;
import java.net.URL;
import java.net.URLConnection;

Expand Down Expand Up @@ -34,7 +35,7 @@ public static void SubmitAnonymousUsage(final String url) {
final BufferedReader[] responseReader = {null};
Thread thread = new Thread(() -> {
try {
serviceUrl[0] = new URL(url);
serviceUrl[0] = URI.create(url).toURL();
responseConnection[0] = serviceUrl[0].openConnection();
responseReader[0] = new BufferedReader(new InputStreamReader(responseConnection[0].getInputStream()));
responseReader[0].close();
Expand Down

0 comments on commit 6eaf821

Please sign in to comment.