Moved package form fr.devinsy.util.rss to fr.devinsy.rss.

This commit is contained in:
Christian P. MOMON 2024-08-23 06:32:50 +02:00
parent c15a64eb1d
commit c720cfc63d
6 changed files with 11 additions and 9 deletions

View file

@ -11,8 +11,8 @@ This software is released under the GNU LGPL.
## Requirements
- Java 11
- Eclipse 4.16 (202006).
- Java 17
- Eclipse > 202306.
## Context
Several useful Java classes.

View file

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-rss. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.util.rss;
package fr.devinsy.rss;
import java.util.HashMap;
import java.util.Locale;

View file

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-rss. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.util.rss;
package fr.devinsy.rss;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;

View file

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-rss. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.util.rss;
package fr.devinsy.rss;
import java.io.File;
import java.io.FileNotFoundException;

View file

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-rss. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.util.rss.demo;
package fr.devinsy.rss.demo;
import java.io.IOException;
import java.time.ZonedDateTime;
@ -29,9 +29,9 @@ import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.Level;
import org.apache.log4j.Logger;
import fr.devinsy.rss.RSSElement;
import fr.devinsy.rss.RSSWriter;
import fr.devinsy.strings.StringListWriter;
import fr.devinsy.util.rss.RSSElement;
import fr.devinsy.util.rss.RSSWriter;
import fr.devinsy.xml.XMLBadFormatException;
import fr.devinsy.xml.XMLTools;

View file

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-rss. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.util.rss;
package fr.devinsy.rss;
import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.Level;
@ -24,6 +24,8 @@ import org.apache.log4j.Logger;
import org.junit.Before;
import org.junit.Test;
import fr.devinsy.rss.RSSCache;
/**
* The Class RSSCacheTest.
*