From 4c6a556fc509b3770fd097529498ac2120d73843 Mon Sep 17 00:00:00 2001 From: Mike Allen Date: Fri, 22 Sep 2017 10:54:47 -0400 Subject: [PATCH] Removed referenced to Java 2 With Java 9 being release, this was just a little out of date. ;-) --- _tour/tour-of-scala.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_tour/tour-of-scala.md b/_tour/tour-of-scala.md index 5ec4d674b2..be74548672 100644 --- a/_tour/tour-of-scala.md +++ b/_tour/tour-of-scala.md @@ -43,6 +43,6 @@ In practice, the development of domain-specific applications often requires doma A joint use of both features facilitates the definition of new statements without using meta-programming facilities such as macros. -Scala is designed to interoperate well with the popular Java 2 Runtime Environment (JRE). In particular, the interaction with the mainstream object-oriented Java programming language is as smooth as possible. Newer Java features like [annotations](annotations.html) and Java generics have direct analogues in Scala. Those Scala features without Java analogues, such as [default](default-parameter-values.html) and [named parameters](named-arguments.html), compile as close to Java as they can reasonably come. Scala has the same compilation model (separate compilation, dynamic class loading) like Java and allows access to thousands of existing high-quality libraries. +Scala is designed to interoperate well with the popular Java Runtime Environment (JRE). In particular, the interaction with the mainstream object-oriented Java programming language is as smooth as possible. Newer Java features like [annotations](annotations.html) and Java generics have direct analogues in Scala. Those Scala features without Java analogues, such as [default](default-parameter-values.html) and [named parameters](named-arguments.html), compile as close to Java as they can reasonably come. Scala has the same compilation model (separate compilation, dynamic class loading) like Java and allows access to thousands of existing high-quality libraries. Please continue to the next page to read more.