Renamed package from fr.devinsy.util to fr.devinsy.unix.util.

This commit is contained in:
Christian P. MOMON 2018-06-01 09:17:59 +02:00
parent 642311c24b
commit c552f1cf3a
7 changed files with 12 additions and 10 deletions

View file

@ -20,7 +20,7 @@ package fr.devinsy.unix;
import java.util.Vector;
import fr.devinsy.util.ChangeableFile;
import fr.devinsy.unix.util.ChangeableFile;
/**
* The Class EtcGroupFile.

View file

@ -21,7 +21,7 @@ package fr.devinsy.unix;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import fr.devinsy.util.ChangeableFile;
import fr.devinsy.unix.util.ChangeableFile;
/**
* The Class EtcPasswdFile.

View file

@ -29,8 +29,8 @@ import org.apache.commons.lang3.time.DurationFormatUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import fr.devinsy.util.Property;
import fr.devinsy.util.PropertyList;
import fr.devinsy.unix.util.Property;
import fr.devinsy.unix.util.PropertyList;
/**
* The Class Linux.

View file

@ -1,5 +1,5 @@
/*
* Copyright (C) 2006-2010,2013-2014,2017 Christian Pierre MOMON
* Copyright (C) 2006-2010,2013-2014,2017-2018 Christian Pierre MOMON
*
* This file is part of Devinsy-unix.
*
@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-unix. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.util;
package fr.devinsy.unix.util;
import java.io.File;

View file

@ -1,5 +1,5 @@
/*
* Copyright (C) 2017 Christian Pierre MOMON
* Copyright (C) 2017-2018 Christian Pierre MOMON
*
* This file is part of Devinsy-unix.
*
@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-unix. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.util;
package fr.devinsy.unix.util;
/**
* The Class Property.

View file

@ -1,5 +1,5 @@
/*
* Copyright (C) 2017 Christian Pierre MOMON
* Copyright (C) 2017-2018 Christian Pierre MOMON
*
* This file is part of Devinsy-unix.
*
@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-unix. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.util;
package fr.devinsy.unix.util;
import java.util.ArrayList;
import java.util.Collections;

View file

@ -23,6 +23,8 @@ import java.io.File;
import org.junit.Assert;
import org.junit.Test;
import fr.devinsy.unix.util.ChangeableFile;
/**
* The Class ChangeableFileTest.
*/