summaryrefslogtreecommitdiffstats
path: root/base/silent
Commit message (Collapse)AuthorAgeFilesLines
* Updated the remaining build scripts.Endi Sukma Dewata2012-08-151-52/+43
| | | | | | | The remaining build scripts have been updated to automatically find the source codes. Ticket #62
* SE_BAD_FIELD, MIGHT_IGNORE , STATIC_INNER_CLASSAbhishek Koneru2012-07-102-7/+5
|
* LeftOver Cases in Resource Leaks and NULL_RETURNSAbhishek Koneru2012-07-021-8/+3
|
* Fixes for Guarded_By_Violation issues shown in CoverityAbhishek Koneru2012-07-021-2/+2
|
* Fix for handling null object value passed to DBAttrMapper as part of ↵Abhishek Koneru2012-06-291-1/+1
| | | | Coverity fix for Forward NULL cases in DogTag 10.
* Fixes for Forward Null Cases in Coverity for DogTag10Abhishek Koneru2012-06-293-6/+11
| | | | Addressed review coments.
* Fixes for Resource Leaks shown in Coverity for DogTag 10Abhishek Koneru2012-06-2111-227/+534
|
* Fixed null pointer exception in pkisilent on connection error.Endi Sukma Dewata2012-06-187-153/+175
| | | | | | | | | Previously HTTPClient.sslConnect() would return a null if there is a connection issue. Some code in pkisilent did not check the return value properly so it would throw an exception. The sslConnect() has been modified to throw an exception instead. Ticket #180
* Fixes for Coverity issues of type Stringbuffer, NO_EQUALS_METHOD , ↵Abhishek Koneru2012-06-151-0/+25
| | | | REVERSE_INULL,Wrong_Map_Iterators
* Fixes for NULL_RETURNS Coverity Issues - Part 2Abhishek Koneru2012-06-143-37/+21
|
* Patch with fixes for review comments 0529Abhishek Koneru2012-06-011-3/+1
|
* Fixes for Coverity Issues CALL_SUPER,UNCONFIRMEDCAST,DEAD_STORE,TOSTRING_ARRAYAbhishek Koneru2012-06-013-4/+4
|
* Patch for fixes for Review CommentsAbhishek Koneru2012-05-244-9/+4
|
* Fixes for Coverity Defects of Category : ↵Abhishek Koneru2012-05-245-45/+44
| | | | FB.SBSC_USE_STRINGBUFFER_CONCATENATION --Remaining
* Fixes for Coverity Defects of Category : FB.DM_NUMBER_CTOR, ↵Abhishek Koneru2012-05-243-21/+9
| | | | FB.DM_STRING_CTOR, FB.DM_STRING_VOID_CTOR
* Fixes for Coverity Defects of Category : FB.BC_VACUOUS_INSTANCEOFAbhishek Koneru2012-05-241-3/+2
|
* Removed unused private fields.Endi Sukma Dewata2012-04-1210-24/+43
| | | | | | | Most of unused private fields have been removed because they generate warnings in Eclipse. Some are kept because it might be useful later. Ticket #139
* Removed unnecessary type casts.Endi Sukma Dewata2012-04-096-16/+14
| | | | | | Unnecessary type casts have been removed using Eclipse Quick Fix. Ticket #134
* Removed whitespaces from Java code.Endi Sukma Dewata2012-04-0936-372/+372
| | | | | | | | Whitespaces in Java code have been removed with the following command: find . -not -path .git -name *.java -exec sed -i 's/[[:blank:]]\+$//' {} \; Ticket #134
* Replaced deprecated DataInputStream.readLine().Endi Sukma Dewata2012-03-282-30/+28
| | | | | | | The deprecated readLine() method in DataInputStream has been replaced by the same method in BufferedReader. Ticket #3
* Replaced deprecated XMLSerializer.Endi Sukma Dewata2012-03-271-8/+13
| | | | | | | | The deprecated XMLSerializer has been replaced with LSSerializer. The new API does not provide a way to control the indentation or line width. Ticket #3
* Removed unnecessary pki folder.Endi Sukma Dewata2012-03-2650-0/+26368
Previously the source code was located inside a pki folder. This folder was created during svn migration and is no longer needed. This folder has now been removed and the contents have been moved up one level. Ticket #131