@ -45,12 +45,11 @@ public class RegisterReflectionReflectiveProcessor implements ReflectiveProcesso
@@ -45,12 +45,11 @@ public class RegisterReflectionReflectiveProcessor implements ReflectiveProcesso
@ -65,12 +64,10 @@ public class RegisterReflectionReflectiveProcessor implements ReflectiveProcesso
@@ -65,12 +64,10 @@ public class RegisterReflectionReflectiveProcessor implements ReflectiveProcesso
allClassNames.add(clazz);
}
else{
thrownewIllegalStateException("At least one class must be specified, "
+"could not detect target from '"+element+"'");
thrownewIllegalStateException("At least one class must be specified: "+element);
@ -89,11 +86,15 @@ public class RegisterReflectionReflectiveProcessor implements ReflectiveProcesso
@@ -89,11 +86,15 @@ public class RegisterReflectionReflectiveProcessor implements ReflectiveProcesso
@ -67,6 +67,7 @@ public final class JettyDataBuffer implements PooledDataBuffer {
@@ -67,6 +67,7 @@ public final class JettyDataBuffer implements PooledDataBuffer {
this.chunk=null;
}
@Override
publicbooleanisAllocated(){
returnthis.refCount.get()>0;
@ -74,14 +75,7 @@ public final class JettyDataBuffer implements PooledDataBuffer {
@@ -74,14 +75,7 @@ public final class JettyDataBuffer implements PooledDataBuffer {
@ -107,7 +101,7 @@ public final class JettyDataBuffer implements PooledDataBuffer {
@@ -107,7 +101,7 @@ public final class JettyDataBuffer implements PooledDataBuffer {
returnthis.chunk.release();
}
else{
returnresult==0;
return(result==0);
}
}
@ -116,6 +110,7 @@ public final class JettyDataBuffer implements PooledDataBuffer {
@@ -116,6 +110,7 @@ public final class JettyDataBuffer implements PooledDataBuffer {
returnthis.bufferFactory;
}
// delegation
@Override
@ -305,15 +300,16 @@ public final class JettyDataBuffer implements PooledDataBuffer {
@@ -305,15 +300,16 @@ public final class JettyDataBuffer implements PooledDataBuffer {
@ -322,13 +318,13 @@ public final class JettyDataBuffer implements PooledDataBuffer {
@@ -322,13 +318,13 @@ public final class JettyDataBuffer implements PooledDataBuffer {
Assert.notNull(delegate,"Delegate must not be null");
Assert.notNull(chunk,"Chunk must not be null");
@ -338,7 +334,6 @@ public final class JettyDataBuffer implements PooledDataBuffer {
@@ -338,7 +334,6 @@ public final class JettyDataBuffer implements PooledDataBuffer {
@ -105,4 +105,5 @@ public class JettyDataBufferFactory implements DataBufferFactory {
@@ -105,4 +105,5 @@ public class JettyDataBufferFactory implements DataBufferFactory {
@ -39,6 +39,7 @@ public class PlaceholderResolutionException extends IllegalArgumentException {
@@ -39,6 +39,7 @@ public class PlaceholderResolutionException extends IllegalArgumentException {
@ -67,6 +68,7 @@ public class PlaceholderResolutionException extends IllegalArgumentException {
@@ -67,6 +68,7 @@ public class PlaceholderResolutionException extends IllegalArgumentException {
@ -271,39 +271,35 @@ final class SingleToMultiValueMapAdapter<K, V> implements MultiValueMap<K, V>, S
@@ -271,39 +271,35 @@ final class SingleToMultiValueMapAdapter<K, V> implements MultiValueMap<K, V>, S
@ -247,14 +247,14 @@ public final class DataSize implements Comparable<DataSize>, Serializable {
@@ -247,14 +247,14 @@ public final class DataSize implements Comparable<DataSize>, Serializable {
@Override
publicbooleanequals(@NullableObjectobj){
if(this==obj){
publicbooleanequals(@NullableObjectother){
if(this==other){
returntrue;
}
if(obj==null||getClass()!=obj.getClass()){
if(other==null||getClass()!=other.getClass()){
returnfalse;
}
DataSizethat=(DataSize)obj;
DataSizethat=(DataSize)other;
return(this.bytes==that.bytes);
}
@ -279,7 +279,6 @@ public final class DataSize implements Comparable<DataSize>, Serializable {
@@ -279,7 +279,6 @@ public final class DataSize implements Comparable<DataSize>, Serializable {