Skip to content

Commit

Permalink
Make bucket fileSystem field final.
Browse files Browse the repository at this point in the history
  • Loading branch information
morazow committed May 16, 2019
1 parent dd60f79 commit b849ad4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/com/exasol/cloudetl/bucket/Bucket.scala
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ abstract class Bucket {
* The Hadoop [[org.apache.hadoop.fs.FileSystem]] for this specific
* bucket path.
*/
lazy val fileSystem: FileSystem =
final lazy val fileSystem: FileSystem =
FileSystem.get(new URI(bucketPath), getConfiguration())

/**
Expand Down Expand Up @@ -87,7 +87,7 @@ object Bucket extends LazyLogging {

/**
* An apply method that creates different [[Bucket]] classes depending
* on the path schema.
* on the path scheme.
*
* @param params The key value parameters
* @return A [[Bucket]] class for the given path
Expand Down

0 comments on commit b849ad4

Please sign in to comment.