diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-05-11 13:16:45 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-05-11 13:16:45 -0400 |
commit | c85069b290922572f9ef15a06ec1d0d0be3adaaa (patch) | |
tree | 8ba1f7b378a0295cea5f550cd8fcb76cb676985e /Source/cmDependsJava.cxx | |
parent | 25d6c04add53631d6506674c3584fc0d8a6e0d46 (diff) | |
download | cmake-c85069b290922572f9ef15a06ec1d0d0be3adaaa.tar.gz |
ENH: some changes to the depends signature to be more flexible
Diffstat (limited to 'Source/cmDependsJava.cxx')
-rw-r--r-- | Source/cmDependsJava.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Source/cmDependsJava.cxx b/Source/cmDependsJava.cxx index bf1ff21d98..ae4e5251da 100644 --- a/Source/cmDependsJava.cxx +++ b/Source/cmDependsJava.cxx @@ -20,17 +20,13 @@ #include "cmSystemTools.h" //---------------------------------------------------------------------------- -cmDependsJava::cmDependsJava(const char* dir, const char* targetFile, - bool verbose): - cmDepends(dir, targetFile, verbose), +cmDependsJava::cmDependsJava(): m_SourceFile() { } //---------------------------------------------------------------------------- -cmDependsJava::cmDependsJava(const char* dir, const char* targetFile, - const char* sourceFile): - cmDepends(dir, targetFile, false), +cmDependsJava::cmDependsJava(const char* sourceFile): m_SourceFile(sourceFile) { } |