Move rome-propono files into a subdirectory

This commit is contained in:
mishako 2016-02-13 18:52:32 +01:00
parent fdfabe4f11
commit 442020891c
107 changed files with 55 additions and 55 deletions

View file

@ -1,21 +1,21 @@
package com.rometools.propono.atom.server; package com.rometools.propono.atom.server;
class ConfigurationError extends Error { class ConfigurationError extends Error {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
private final Exception exception; private final Exception exception;
/** /**
* Construct a new instance with the specified detail string and exception. * Construct a new instance with the specified detail string and exception.
*/ */
ConfigurationError(final String msg, final Exception x) { ConfigurationError(final String msg, final Exception x) {
super(msg); super(msg);
exception = x; exception = x;
} }
Exception getException() { Exception getException() {
return exception; return exception;
} }
} }

View file

@ -1,24 +1,24 @@
package com.rometools.propono.blogclient.metaweblog; package com.rometools.propono.blogclient.metaweblog;
import java.util.Iterator; import java.util.Iterator;
class NoOpIterator<T> implements Iterator<T> { class NoOpIterator<T> implements Iterator<T> {
/** No-op */ /** No-op */
@Override @Override
public boolean hasNext() { public boolean hasNext() {
return false; return false;
} }
/** No-op */ /** No-op */
@Override @Override
public T next() { public T next() {
return null; return null;
} }
/** No-op */ /** No-op */
@Override @Override
public void remove() { public void remove() {
} }
} }

View file

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Some files were not shown because too many files have changed in this diff Show more