]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3896 The last empty line of source file is not displayed in the source code...
authorJulien Lancelot <julien.lancelot@gmail.com>
Wed, 21 Nov 2012 16:05:28 +0000 (17:05 +0100)
committerJulien Lancelot <julien.lancelot@gmail.com>
Wed, 21 Nov 2012 16:05:28 +0000 (17:05 +0100)
sonar-server/src/main/webapp/WEB-INF/app/models/api/utils.rb

index 8aaf05ea3c92efe70f14c68ac6174cde8f079404..a38b6ba367b4f59f06274799befe7b171e9800f2 100644 (file)
@@ -60,10 +60,9 @@ class Api::Utils
   # For history reference:
   #   - http://jira.codehaus.org/browse/SONAR-2282 first modified the behaviour to keep the trailing lines
   #   - then http://jira.codehaus.org/browse/SONAR-3003 reverted this modification to remove potential last empty line
+  #   - then http://jira.codehaus.org/browse/SONAR-3896 reactivate this modification to display last empty line
   def self.split_newlines(input)
-    result = input.split(/\r?\n|\r/, -1)
-    result.pop if result.last==''
-    result
+    input.split(/\r?\n|\r/, -1)
   end
 
   def self.convert_string_to_unix_newlines(input)