summaryrefslogtreecommitdiff
path: root/test/files/run/finally.scala
diff options
context:
space:
mode:
authorJanek Bogucki <janekdb@gmail.com>2015-06-28 21:42:11 +0100
committerJanek Bogucki <janekdb@gmail.com>2015-06-28 21:42:11 +0100
commit0ff6c81dd3e3e3a60d8f2db845ada167c8266395 (patch)
tree678ec4a9057221823d9d8f14b658e58d9cd477d5 /test/files/run/finally.scala
parent5b8073676cc77c2c889ed690f12bb6a99e790769 (diff)
downloadscala-0ff6c81dd3e3e3a60d8f2db845ada167c8266395.tar.gz
scala-0ff6c81dd3e3e3a60d8f2db845ada167c8266395.tar.bz2
scala-0ff6c81dd3e3e3a60d8f2db845ada167c8266395.zip
Improve method names (m-o)
Diffstat (limited to 'test/files/run/finally.scala')
-rw-r--r--test/files/run/finally.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/finally.scala b/test/files/run/finally.scala
index b66354ca03..467c9e5868 100644
--- a/test/files/run/finally.scala
+++ b/test/files/run/finally.scala
@@ -94,7 +94,7 @@ object Test extends App {
}
// nested finally blocks with return value
- def nestedFinalies: Int =
+ def nestedFinallyBlocks: Int =
try {
try {
return 10
@@ -123,5 +123,5 @@ object Test extends App {
test(throwBody, "throwBody")
test(retFinally, "retFinally")
test(throwFinally, "throwFinally")
- test(nestedFinalies, "nestedFinalies")
+ test(nestedFinallyBlocks, "nestedFinallyBlocks")
}