From e61c47c8f243111ecaeaac225ca3cdad3e877b88 Mon Sep 17 00:00:00 2001 From: Aleksandr Eliseev Date: Wed, 24 Dec 2025 17:33:35 +0300 Subject: [PATCH] Add copyright notes to changed files (cherry picked from commit 51062f99f7a1374a54d2246b0c8c2f4cdee91004) --- python/src/com/jetbrains/python/debugger/PyDebugProcess.java | 3 +++ python/src/com/jetbrains/python/debugger/PyExecutionStack.java | 3 +++ 2 files changed, 6 insertions(+) diff --git a/python/src/com/jetbrains/python/debugger/PyDebugProcess.java b/python/src/com/jetbrains/python/debugger/PyDebugProcess.java index d4aa340b9d38..f47fe0175e9e 100644 --- a/python/src/com/jetbrains/python/debugger/PyDebugProcess.java +++ b/python/src/com/jetbrains/python/debugger/PyDebugProcess.java @@ -1,4 +1,7 @@ // Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. +// +// Modified by Aleksandr Eliseev at 2025 as part of the OpenIDE project(https://openide.ru). +// Any modifications are available on the same license terms as the original source code. package com.jetbrains.python.debugger; import com.google.common.base.Strings; diff --git a/python/src/com/jetbrains/python/debugger/PyExecutionStack.java b/python/src/com/jetbrains/python/debugger/PyExecutionStack.java index 20ffe236d7d6..c74ffdf05f42 100644 --- a/python/src/com/jetbrains/python/debugger/PyExecutionStack.java +++ b/python/src/com/jetbrains/python/debugger/PyExecutionStack.java @@ -1,4 +1,7 @@ // Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. +// +// Modified by Aleksandr Eliseev at 2025 as part of the OpenIDE project(https://openide.ru). +// Any modifications are available on the same license terms as the original source code. package com.jetbrains.python.debugger; import com.intellij.openapi.application.ApplicationManager;