Skip to content

Commit

Permalink
Remove attempt at fixing libraries.
Browse files Browse the repository at this point in the history
  • Loading branch information
gchallen committed Sep 7, 2021
1 parent c7ae5ee commit dc9e910
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 18 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ allprojects {
}
subprojects {
group = "com.github.cs125-illinois.jeed"
version = "2021.9.1"
version = "2021.9.2"
tasks.withType<Test> {
useJUnitPlatform()
enableAssertions = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2021.9.1
version=2021.9.2
3 changes: 0 additions & 3 deletions core/src/main/kotlin/Execute.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ class SourceExecutionArguments(
// Not sure why this is required by Date, but it seems to be
// ClassLoader enumeration is probably not unsafe...
RuntimePermission("getClassLoader"),
// Required by java.util.Currency
RuntimePermission("accessSystemModules"),
PropertyPermission("java.util.currency.data", "read")
)
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2021.9.1
version=2021.9.2
11 changes: 0 additions & 11 deletions core/src/test/kotlin/TestSnippet.kt
Original file line number Diff line number Diff line change
Expand Up @@ -695,17 +695,6 @@ class Example {
executionResult should haveOutput("")
}
}
"should load Currency data" {
Source.fromSnippet(
"""
import java.util.Currency;

System.out.println(Currency.getAvailableCurrencies());
""".trimIndent()
).compile().execute().also { executionResult ->
executionResult should haveCompleted()
}
}
})

fun haveParseErrorOnLine(line: Int) = object : Matcher<SnippetTransformationFailed> {
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2021.9.1
version=2021.9.2

0 comments on commit dc9e910

Please sign in to comment.