Revision 26395 branches/v10/libraries/libDielmoOpenLidar/src/com/dielmo/lidar/LASHeader_V12.java

View differences:

LASHeader_V12.java
60 60

  
61 61
import javax.swing.JOptionPane;
62 62

  
63
import com.hardcode.gdbms.driver.DriverUtilities;
64 63

  
65

  
66 64
public class LASHeader_V12 extends LASHeader_V11{	
67 65
	/**
68 66
	 * vector of variable length record header
......
338 336
				FileChannel fcinNewLidar = new FileInputStream(fTemp).getChannel();
339 337
				FileChannel fcoutNewLidar = new FileOutputStream(m_Fich).getChannel();
340 338
				// copy temporal file to the original file
341
				DriverUtilities.copy(fcinNewLidar, fcoutNewLidar);
339
				copyFile(fcinNewLidar, fcoutNewLidar);
342 340
				
343
				
344 341
			} catch (FileNotFoundException e) {
345 342
				// TODO Auto-generated catch block
346 343
				e.printStackTrace();

Also available in: Unified diff