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

Side by Side Diff: bin/deprecated/unionResults

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/deprecated/unionBugs ('k') | bin/deprecated/updateBugs » ('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 # Deprecated 3 # Deprecated
4 4
5 # Create the union of two results files, preserving 5 # Create the union of two results files, preserving
6 # annotations in both files in the result. 6 # annotations in both files in the result.
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 fb_maxheap=${fb_maxheap:-"-Xmx768m"} 71 fb_maxheap=${fb_maxheap:-"-Xmx768m"}
72 fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"} 72 fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
73 set -f 73 set -f
74 #echo command: \ 74 #echo command: \
75 exec "$fb_javacmd" \ 75 exec "$fb_javacmd" \
76 -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \ 76 -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
77 -Dfindbugs.home="$findbugs_home"\ 77 -Dfindbugs.home="$findbugs_home"\
78 $fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs 78 $fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
79 79
80 # vim:ts=3 80 # vim:ts=3
OLDNEW
« no previous file with comments | « bin/deprecated/unionBugs ('k') | bin/deprecated/updateBugs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698