do not export deps blindly (part 4)

GitOrigin-RevId: f9c9a9ba2b8a6dd1359b8bcb78220feceb3699e8
This commit is contained in:
Vladimir Krivosheev
2024-12-22 21:23:19 +01:00
committed by intellij-monorepo-bot
parent a6fafbca02
commit 2cd6fbda37
30 changed files with 40 additions and 41 deletions

View File

@@ -12,6 +12,7 @@
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="kotlin-stdlib" level="project" />
<orderEntry type="module" module-name="intellij.java" />
<orderEntry type="module" module-name="intellij.java.debugger" />
<orderEntry type="module" module-name="intellij.platform.ide.core.impl" />
<orderEntry type="module" module-name="intellij.java.impl" />
<orderEntry type="module" module-name="intellij.java.ui" />

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.java.ift.lesson.run
import com.intellij.debugger.JavaDebuggerBundle
@@ -21,8 +21,7 @@ import training.statistic.LessonStartingWay
import training.ui.LearningUiManager
import training.util.isToStringContains
class JavaDebugLesson : CommonDebugLesson("java.debug.workflow") {
internal class JavaDebugLesson : CommonDebugLesson("java.debug.workflow") {
override val testScriptProperties: TaskTestContext.TestScriptProperties = TaskTestContext.TestScriptProperties(duration = 60)
private val demoClassName = "Sample"