-
Notifications
You must be signed in to change notification settings - Fork 0
Introduce new namespace for current environment in Plugins API #29
Conversation
if (existedValue) { | ||
if (existedValue instanceof Array) { | ||
existedValue.push(value); | ||
queryParameters[key] = existedValue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think queryParameters[key] was already updated after push, so You don't need update queryParameters by key again.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, thanks
|
||
import { interfaces } from "inversify"; | ||
import { EnvVariablesServer } from "@theia/core/lib/common/env-variables"; | ||
import { RPCProtocol } from '../../api/rpc-protocol'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's use ' or " for all import
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missed it, probably autoimport. Thanks for spotting
e817cf6
to
4d72489
Compare
hello, do you know why build is failing ? |
It failed because of failed
But I haven't touched git functionality at all. So have no idea. |
FYI I've rebased branch to upstream master branch (as current build was failing) |
Signed-off-by: Mykola Morhun <mmorhun@redhat.com>
…APi (#29) Signed-off-by: Mykola Morhun <mmorhun@redhat.com>
…APi (#29) Signed-off-by: Mykola Morhun <mmorhun@redhat.com>
…APi (#29) Signed-off-by: Mykola Morhun <mmorhun@redhat.com>
…APi (#29) Signed-off-by: Mykola Morhun <mmorhun@redhat.com>
Introduces
env
namespace for current IDE environment in plugin API.This PR adds ability to read:
Resolves eclipse-che/che#9845