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;
|
||||
|
||||
class ConfigurationError extends Error {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private final Exception exception;
|
||||
|
||||
/**
|
||||
* Construct a new instance with the specified detail string and exception.
|
||||
*/
|
||||
ConfigurationError(final String msg, final Exception x) {
|
||||
super(msg);
|
||||
exception = x;
|
||||
}
|
||||
|
||||
Exception getException() {
|
||||
return exception;
|
||||
}
|
||||
|
||||
package com.rometools.propono.atom.server;
|
||||
|
||||
class ConfigurationError extends Error {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private final Exception exception;
|
||||
|
||||
/**
|
||||
* Construct a new instance with the specified detail string and exception.
|
||||
*/
|
||||
ConfigurationError(final String msg, final Exception x) {
|
||||
super(msg);
|
||||
exception = x;
|
||||
}
|
||||
|
||||
Exception getException() {
|
||||
return exception;
|
||||
}
|
||||
|
||||
}
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
@ -1,24 +1,24 @@
|
|||
package com.rometools.propono.blogclient.metaweblog;
|
||||
|
||||
import java.util.Iterator;
|
||||
|
||||
class NoOpIterator<T> implements Iterator<T> {
|
||||
|
||||
/** No-op */
|
||||
@Override
|
||||
public boolean hasNext() {
|
||||
return false;
|
||||
}
|
||||
|
||||
/** No-op */
|
||||
@Override
|
||||
public T next() {
|
||||
return null;
|
||||
}
|
||||
|
||||
/** No-op */
|
||||
@Override
|
||||
public void remove() {
|
||||
}
|
||||
|
||||
package com.rometools.propono.blogclient.metaweblog;
|
||||
|
||||
import java.util.Iterator;
|
||||
|
||||
class NoOpIterator<T> implements Iterator<T> {
|
||||
|
||||
/** No-op */
|
||||
@Override
|
||||
public boolean hasNext() {
|
||||
return false;
|
||||
}
|
||||
|
||||
/** No-op */
|
||||
@Override
|
||||
public T next() {
|
||||
return null;
|
||||
}
|
||||
|
||||
/** No-op */
|
||||
@Override
|
||||
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