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

Side by Side Diff: bin/experimental/treemapVisualization

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/experimental/obfuscate ('k') | bin/fb » ('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 program="$0" 3 program="$0"
4 4
5 # Follow symlinks until we get to the actual file. 5 # Follow symlinks until we get to the actual file.
6 while [ -h "$program" ]; do 6 while [ -h "$program" ]; do
7 link=`ls -ld "$program"` 7 link=`ls -ld "$program"`
8 link=`expr "$link" : '.*-> \(.*\)'` 8 link=`expr "$link" : '.*-> \(.*\)'`
9 if [ "`expr "$link" : '/.*'`" = 0 ]; then 9 if [ "`expr "$link" : '/.*'`" = 0 ]; then
10 # Relative 10 # Relative
11 dir=`dirname "$program"` 11 dir=`dirname "$program"`
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 fb_maxheap=${fb_maxheap:-"-Xmx768m"} 66 fb_maxheap=${fb_maxheap:-"-Xmx768m"}
67 fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"} 67 fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
68 set -f 68 set -f
69 #echo command: \ 69 #echo command: \
70 exec "$fb_javacmd" \ 70 exec "$fb_javacmd" \
71 -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \ 71 -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
72 -Dfindbugs.home="$findbugs_home"\ 72 -Dfindbugs.home="$findbugs_home"\
73 $fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs 73 $fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
74 74
75 # vim:ts=3 75 # vim:ts=3
OLDNEW
« no previous file with comments | « bin/experimental/obfuscate ('k') | bin/fb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698