Move rome-propono files into a subdirectory
This commit is contained in:
parent
fdfabe4f11
commit
442020891c
107 changed files with 55 additions and 55 deletions
0
.gitignore → rome-propono/.gitignore
vendored
0
.gitignore → rome-propono/.gitignore
vendored
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
@ -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() {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
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
Loading…
Reference in a new issue