File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
rd-kt/rd-core/src/main/kotlin/com/jetbrains/rd/util/string Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ fun Any?.print(printer: PrettyPrinter) {
17
17
is String -> printer.print (" \" $this \" " )
18
18
is Throwable -> printer.print (getThrowableText())
19
19
is List <* > -> {
20
- val maxPrint = 3
20
+ val maxPrint = Int . MAX_VALUE
21
21
printer.print (" [" )
22
22
val cnt = this @print.size
23
23
printer.indent {
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public void Dispose()
39
39
[ PublicAPI ] public int Step { get ; set ; } = 2 ;
40
40
41
41
[ PublicAPI ]
42
- public int CollectionMaxLength { get ; set ; } = 3 ;
42
+ public int CollectionMaxLength { get ; set ; } = int . MaxValue ;
43
43
#endregion
44
44
45
45
#region Settings for PrettyPriter clients
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ public class SingleLinePrettyPrinter : PrettyPrinter
6
6
{
7
7
public SingleLinePrettyPrinter ( )
8
8
{
9
- BufferCapacity = 1000 ;
9
+ BufferCapacity = InfiniteCapacity ;
10
10
}
11
11
public override string ToString ( )
12
12
{
You can’t perform that action at this time.
0 commit comments