Skip to content

Commit

Permalink
simplified examples batch files
Browse files Browse the repository at this point in the history
  • Loading branch information
yusuke authored and Mocel committed Nov 22, 2010
1 parent b0bed40 commit 1d6763e
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/async/asyncUpdate.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.async.AsyncUpdate %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.async.AsyncUpdate %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/directmessage/getDirectMessages.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.directmessage.GetDirectMessages %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.directmessage.GetDirectMessages %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/directmessage/sendDirectMessage.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.directmessage.SendDirectMessage %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.directmessage.SendDirectMessage %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/getAccessToken.cmd
Expand Up @@ -2,7 +2,7 @@ echo off
SETLOCAL enabledelayedexpansion
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.oauth.GetAccessToken %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.oauth.GetAccessToken %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/misc/feedMonitor.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.misc.FeedMonitor %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.misc.FeedMonitor %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/stream/printFilterStream.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.stream.PrintFiltetrStream %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.stream.PrintFilterStream %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/stream/printSampleStream.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.stream.PrintSampleStream %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.stream.PrintSampleStream %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/stream/printUserStream.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.stream.PrintUserStream %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.stream.PrintUserStream %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/timeline/getHomeTimeline.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetHomeTimeline %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetHomeTimeline %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/timeline/getMentions.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetMentions %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetMentions %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/timeline/getPublicTimeline.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetPublicTimeline %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetPublicTimeline %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/timeline/getRetweetedByMe.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetRetweetedByMe %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetRetweetedByMe %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/timeline/getRetweetsOfMe.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetRetweetsOfMe %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetRetweetsOfMe %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/timeline/getUserTimeline.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetUserTimeline %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.timeline.GetUserTimeline %*

ENDLOCAL
2 changes: 1 addition & 1 deletion twitter4j-examples/bin/tweets/updateStatus.cmd
Expand Up @@ -3,7 +3,7 @@ SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd

echo %JAVA% %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.tweets.UpdateStatus %*
echo on
"%JAVA%" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.tweets.UpdateStatus %*

ENDLOCAL

0 comments on commit 1d6763e

Please sign in to comment.