You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by br...@apache.org on 2014/05/05 21:27:44 UTC

[03/10] git commit: remove stray bat file

remove stray bat file


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/64394b25
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/64394b25
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/64394b25

Branch: refs/heads/cassandra-2.1
Commit: 64394b2526f99c8cbbc0542d36c52adcc05419b5
Parents: 9eb346a
Author: Brandon Williams <br...@apache.org>
Authored: Mon May 5 14:23:21 2014 -0500
Committer: Brandon Williams <br...@apache.org>
Committed: Mon May 5 14:23:27 2014 -0500

----------------------------------------------------------------------
 bin/sstablemetadata.bat | 33 ---------------------------------
 1 file changed, 33 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/64394b25/bin/sstablemetadata.bat
----------------------------------------------------------------------
diff --git a/bin/sstablemetadata.bat b/bin/sstablemetadata.bat
deleted file mode 100644
index 72e6506..0000000
--- a/bin/sstablemetadata.bat
+++ /dev/null
@@ -1,33 +0,0 @@
-@REM  Licensed to the Apache Software Foundation (ASF) under one or more
-@REM  contributor license agreements.  See the NOTICE file distributed with
-@REM  this work for additional information regarding copyright ownership.
-@REM  The ASF licenses this file to You under the Apache License, Version 2.0
-@REM  (the "License"); you may not use this file except in compliance with
-@REM  the License.  You may obtain a copy of the License at
-@REM
-@REM      http://www.apache.org/licenses/LICENSE-2.0
-@REM
-@REM  Unless required by applicable law or agreed to in writing, software
-@REM  distributed under the License is distributed on an "AS IS" BASIS,
-@REM  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-@REM  See the License for the specific language governing permissions and
-@REM  limitations under the License.
-
-@echo off
-
-setlocal
-
-if NOT DEFINED CASSANDRA_HOME set CASSANDRA_HOME=%CD%\..\..
-if NOT DEFINED JAVA_HOME goto :err
-
-set CLASSPATH=""
-for %%i in ("%CASSANDRA_HOME%\build\*.jar") do call :append "%%i"
-for %%i in ("%CASSANDRA_HOME%\lib\*.jar") do call :append "%%i"
-goto start
-
-:append
-set CLASSPATH=%CLASSPATH%;%1
-goto :eof
-
-:start
-"%JAVA_HOME%\bin\java" -cp %CLASSPATH% org.apache.cassandra.tools.SSTableMetadataViewer %*