aboutsummaryrefslogtreecommitdiff
path: root/stage2/Lib.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-03-15 10:47:11 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2017-03-15 21:55:16 -0400
commitd292d1ed18b317ee75eb40f828b452ed5cc09616 (patch)
tree08638b23b19efc48bd948afcaf4f82bb1c4900c6 /stage2/Lib.scala
parentbbeb79bc32296c77d5fd21816bf7ab7323ab864a (diff)
downloadcbt-d292d1ed18b317ee75eb40f828b452ed5cc09616.tar.gz
cbt-d292d1ed18b317ee75eb40f828b452ed5cc09616.tar.bz2
cbt-d292d1ed18b317ee75eb40f828b452ed5cc09616.zip
Fix not being able to call methods not declared in your build class
Diffstat (limited to 'stage2/Lib.scala')
-rw-r--r--stage2/Lib.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage2/Lib.scala b/stage2/Lib.scala
index ceea004..d5a964a 100644
--- a/stage2/Lib.scala
+++ b/stage2/Lib.scala
@@ -95,7 +95,7 @@ final class Lib(val logger: Logger) extends Stage1Lib(logger){
.flatMap(
c =>
c
- .getDeclaredMethods
+ .getMethods
.filter{ m =>
java.lang.reflect.Modifier.isPublic(m.getModifiers)
}