Project

General

Profile

« Previous | Next » 

Revision 48936

View differences:

StatsManagerImpl.java
158 158
			Quadruple<String, Integer, Float, Float> q = null;
159 159
			List<Quadruple<String, Integer, Float, Float>> l = new ArrayList<>();
160 160
			for(Object[] rs : resultSet){
161
				System.out.println(rs[0] + "/" + rs[1] + "/" + rs[2] + "/" + rs[3] );
162 161
				if(rs[0] == null) rs[0] = "";
163 162
				if(rs[2] == null) rs[2] = "0.0";
164 163
				if(rs[3] == null) rs[3] = "0.0";
......
292 291

  
293 292
		SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.s");
294 293
		for(Object[] rs : resultSet){
295
			System.out.println(rs[0] + "/" + rs[1] + "/" + rs[2]);
296 294
			Date date = null;
297 295
			try {
298 296
				if(rs[0] == null)
......
345 343
			Triple<String, String, Integer> t;
346 344
			List<Triple<String, String, Integer>> l = new ArrayList<>();
347 345
			for(Object[] rs : resultSet){
348
				System.out.println(rs[0] + "/" + rs[1] + "/" + rs[2]);
349 346
				if(rs[0] == null ) rs[0] = "";
350 347
				if(rs[1] == null ) rs[1] = "";
351 348
				if(rs[2] == null ) rs[2] = 0;

Also available in: Unified diff