From df2cdfc3b0373b6d84913750b399ba66e1430fcf Mon Sep 17 00:00:00 2001 From: Alexandr Evstigneev Date: Wed, 19 Aug 2020 21:43:11 +0300 Subject: [PATCH] IDEA-247635 RemoteSdkPropertiesPaths IDEA-CR-66127 GitOrigin-RevId: a2a79098a07d4ab2b7758992d708151a6d44a39e --- .../src/com/intellij/remote/RemoteSdkPropertiesPaths.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/platform/platform-impl/src/com/intellij/remote/RemoteSdkPropertiesPaths.java b/platform/platform-impl/src/com/intellij/remote/RemoteSdkPropertiesPaths.java index 49fa831f0854..54057e126d75 100644 --- a/platform/platform-impl/src/com/intellij/remote/RemoteSdkPropertiesPaths.java +++ b/platform/platform-impl/src/com/intellij/remote/RemoteSdkPropertiesPaths.java @@ -1,8 +1,12 @@ -// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.remote; +import com.intellij.openapi.util.NlsSafe; + public interface RemoteSdkPropertiesPaths { + @NlsSafe String getInterpreterPath(); + @NlsSafe String getHelpersPath(); }