summaryrefslogtreecommitdiff
path: root/src/main/scala/chisel3/compatibility/FileSystemUtilities.scala
diff options
context:
space:
mode:
authorAndrew Waterman2016-07-31 18:01:01 -0700
committerAndrew Waterman2016-07-31 18:01:01 -0700
commitce42ef15128a626e723249ae7b129fb5a370fa9c (patch)
tree3c4d7c53db9feb5339c769b2826881543ccb4619 /src/main/scala/chisel3/compatibility/FileSystemUtilities.scala
parent8b0fa7826a547f9123277119aabc58f7c75e2ca3 (diff)
Remove deprecated FileSystemUtilities
This has been deprecated for a long time now (and really shouldn't have existed to begin with).
Diffstat (limited to 'src/main/scala/chisel3/compatibility/FileSystemUtilities.scala')
-rw-r--r--src/main/scala/chisel3/compatibility/FileSystemUtilities.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/main/scala/chisel3/compatibility/FileSystemUtilities.scala b/src/main/scala/chisel3/compatibility/FileSystemUtilities.scala
deleted file mode 100644
index cd47c731..00000000
--- a/src/main/scala/chisel3/compatibility/FileSystemUtilities.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-// See LICENSE for license details.
-
-package chisel3.compatibility
-
-import chisel3._
-
-@deprecated("FileSystemUtilities doesn't exist in chisel3", "3.0.0")
-trait FileSystemUtilities {
- def createOutputFile(name: String): java.io.FileWriter = {
- new java.io.FileWriter(Driver.targetDir + "/" + name)
- }
-}