Fixed comments

master
Thorsten Muerell 7 years ago
parent da12eb698d
commit 8a1f942298

@ -1,7 +1,6 @@
# Change Log # Change Log
All notable changes to the "frog" extension will be documented in this file. All notable changes to the "frog" extension will be documented in this file.
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. ## 0.0.18
## [Unreleased] - Fixed bug with endless loop
- Initial release

@ -1,9 +1,9 @@
{ {
"name": "frog", "name": "frog",
"displayName": "frog", "displayName": "Frog",
"description": "The Oracle SQL workbench for VSCode", "description": "The Oracle SQL workbench for VSCode",
"version": "0.0.17", "version": "0.0.18",
"publisher": "todie", "publisher": "tmuerell",
"engines": { "engines": {
"vscode": "^1.17.0" "vscode": "^1.17.0"
}, },

@ -59,7 +59,7 @@ export class SessionManager {
return false; return false;
} }
let extPath = vscode.extensions.getExtension("todie.frog").extensionPath; let extPath = vscode.extensions.getExtension("tmuerell.frog").extensionPath;
const configuration = vscode.workspace.getConfiguration('frog') const configuration = vscode.workspace.getConfiguration('frog')
const javaHome = configuration.get("javaHome", "") const javaHome = configuration.get("javaHome", "")
let java = "java"; let java = "java";

Loading…
Cancel
Save