Administrator
2 days ago 0bd44afe3417454c5247c10b70897331e586536b
1
2
3
4
5
6
7
8
package com.best.javaSdk.converter.util.jsonReader;
 
public class StdoutStreamErrorListener extends BufferErrorListener {
    
    public void end() {
        System.out.print(buffer.toString());
    }
}