Skip to content

Commit

Permalink
adjust to 2.13.6 restriction on narrowing access when overriding
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue committed May 11, 2021
1 parent 85a492e commit b555ca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/src/main/scala/sbt/nio/file/Glob.scala
Expand Up @@ -903,7 +903,7 @@ object RelativeGlob {
override def hashCode: Int = glob.hashCode
}
private final class GlobMatcher(override val glob: String) extends SingleComponentMatcher {
private[this] val (prefix, pattern) = glob.indexOf(":") match {
private[file] val (prefix, pattern) = glob.indexOf(":") match {
case -1 => ("glob", glob)
case i => (glob.substring(0, i), glob.substring(i + 1))
}
Expand Down

0 comments on commit b555ca5

Please sign in to comment.