make java sample code independent of Scala (#25800)

* need this for gathering and compiling java sources (in IDE),
  https://github.com/patriknw/akka-compile-ide-java
This commit is contained in:
Patrik Nordwall 2018-10-16 14:52:54 +02:00 committed by Christopher Batey
parent e7347ffee4
commit d71ba251ed
2 changed files with 24 additions and 8 deletions

View file

@ -2,13 +2,13 @@
* Copyright (C) 2016-2018 Lightbend Inc. <https://www.lightbend.com>
*/
package jdocs
package jdocs;
import org.scalatest.junit.JUnitSuite
import org.scalatest.junit.JUnitSuite;
/**
* Base class for all runnable example tests written in Java
*/
abstract class AbstractJavaTest extends JUnitSuite {
public abstract class AbstractJavaTest extends JUnitSuite {
}