| OLD | NEW |
| 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 Loading... |
| 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 ${@:+"$@"} |
| OLD | NEW |