IntelliJ IDEA 2020.3 white space in console

Answered

Can someone kindly guide me how can I get rid of the whitespace in the console? 

Unable to find any solution. See the image. Thank you

0
5 comments

Seems they are produceed by the program itself. 

Check if there are any "println" with empty arguments. 

0
Avatar
Permanently deleted user

Konstantin Annikov

There are no "println" with empty arguments. 

I was using the community version before, since I have updated to the ultimate version I am having this issue. 

0

May you share a sample project where the issue could be reproduced? 

0
Avatar
Permanently deleted user

Konstantin Annikov

Using below sample project. I am still getting same issue. 
Maven build project, using Junit and Java Faker dependency. 
Just trying to print something and still sees lot of space in console. I have also attach the image.

public class JUnit5RepeatedTest {

@RepeatedTest(5) //will repeat the test 5 times
public void testRepeating(){
Faker faker = new Faker();
System.out.println(faker.chuckNorris().fact());
}
}
0

Can't reproduce: 

Please share the whole project zipped (including .idea folder)

0

Please sign in to leave a comment.