Minor: fix junit.framework.Assert deprecation warnings

This commit is contained in:
Nikolay Krasko
2019-03-11 19:07:46 +03:00
committed by Nikolay Krasko
parent 213b98fefe
commit 1bfd6705cc
2 changed files with 2 additions and 2 deletions
@@ -7,9 +7,9 @@ package org.jetbrains.kotlin.idea.scratch
import com.intellij.ide.scratch.ScratchFileService
import com.intellij.ide.scratch.ScratchRootType
import junit.framework.Assert
import org.jetbrains.kotlin.idea.KotlinLanguage
import org.jetbrains.kotlin.idea.scratch.ui.ScratchTopPanel
import org.junit.Assert
import javax.swing.JCheckBox
import kotlin.reflect.full.createType
import kotlin.reflect.full.declaredMemberProperties
@@ -8,10 +8,10 @@ package org.jetbrains.kotlin.test;
import com.intellij.ide.hierarchy.HierarchyNodeDescriptor;
import com.intellij.ide.hierarchy.HierarchyTreeStructure;
import com.intellij.openapi.util.JDOMUtil;
import junit.framework.Assert;
import org.jdom.Element;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.junit.Assert;
import java.util.*;