Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Side by Side Diff: bin/findbugs2

Issue 1232833004: Update findbugs from 3.0.0 to 3.0.1. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/findbugs.git@master
Patch Set: rebase again Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « bin/findbugs-msv ('k') | bin/listBugDatabaseInfo » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #! /bin/sh
2 2
3 # 3 #
4 # Simplified findbugs startup script. 4 # Simplified findbugs startup script.
5 # This is an experiment. 5 # This is an experiment.
6 # 6 #
7 7
8 program="$0" 8 program="$0"
9 9
10 # Follow symlinks until we get to the actual file. 10 # Follow symlinks until we get to the actual file.
11 while [ -h "$program" ]; do 11 while [ -h "$program" ]; do
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 # 168 #
169 # Launch JVM 169 # Launch JVM
170 # 170 #
171 exec "$fb_javacmd" \ 171 exec "$fb_javacmd" \
172 -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \ 172 -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
173 -Dfindbugs.home="$findbugs_home" \ 173 -Dfindbugs.home="$findbugs_home" \
174 $jvm_debug $jvm_maxheap $jvm_ea $jvm_conservespace $jvm_user_props \ 174 $jvm_debug $jvm_maxheap $jvm_ea $jvm_conservespace $jvm_user_props \
175 -Dfindbugs.launchUI=$fb_launchui \ 175 -Dfindbugs.launchUI=$fb_launchui \
176 -jar $findbugs_home/lib/findbugs.jar \ 176 -jar $findbugs_home/lib/findbugs.jar \
177 ${@:+"$@"} 177 ${@:+"$@"}
OLDNEW
« no previous file with comments | « bin/findbugs-msv ('k') | bin/listBugDatabaseInfo » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698