Skip to content

Commit

Permalink
hotfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
reymondzzzz committed Nov 26, 2023
1 parent 4252917 commit ed1c6db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.gradle.jvmargs=-Xmx2048m
3 changes: 0 additions & 3 deletions src/main/kotlin/com/smallcloud/refactai/Initializer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ class Initializer : ProjectActivity, Disposable {
initialize(project)
}
private fun initialize(project: Project) {
val listener = LastEditorGetterListener.instance
// Disposer.register(PluginState.instance, listener)

Logger.getInstance("SMCInitializer").info("Bin prefix = ${Resources.binPrefix}")
ConnectivityManager.instance.startup()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class PluginErrorReportSubmitter : ErrorReportSubmitter(), Disposable {
"; VM: " + properties.getProperty("java.vm.name", "unknown") +
"; Vendor: " + properties.getProperty("java.vendor", "unknown")
val os = SystemInfo.getOsNameAndVersion()
val arch = SystemInfo.OS_ARCH
val issueBody = """
|An internal error happened in the IDE plugin.
|
Expand All @@ -56,6 +57,7 @@ class PluginErrorReportSubmitter : ErrorReportSubmitter(), Disposable {
|- IDE: $ideNameAndVersion
|- JDK: $jdk
|- OS: $os
|- ARCH: $arch
|- MODE: $mode
|
|### Additional information
Expand Down

0 comments on commit ed1c6db

Please sign in to comment.