@ -78,6 +78,13 @@ public class ManagementServerProperties implements SecurityPrerequisite {
@@ -78,6 +78,13 @@ public class ManagementServerProperties implements SecurityPrerequisite {
@ -183,11 +190,4 @@ public class ManagementServerProperties implements SecurityPrerequisite {
@@ -183,11 +190,4 @@ public class ManagementServerProperties implements SecurityPrerequisite {
@ -87,6 +87,7 @@ public class ActuatorHalBrowserEndpoint extends ActuatorHalJsonEndpoint implemen
@@ -87,6 +87,7 @@ public class ActuatorHalBrowserEndpoint extends ActuatorHalJsonEndpoint implemen
@ -66,7 +66,7 @@ public class ActuatorHalJsonEndpoint extends WebMvcConfigurerAdapter implements
@@ -66,7 +66,7 @@ public class ActuatorHalJsonEndpoint extends WebMvcConfigurerAdapter implements
@ -121,7 +121,7 @@ public class DropwizardMetricWriter implements MetricWriter {
@@ -121,7 +121,7 @@ public class DropwizardMetricWriter implements MetricWriter {
@ -294,18 +294,6 @@ public class ConfigurationPropertiesReportEndpointSerializationTests {
@@ -294,18 +294,6 @@ public class ConfigurationPropertiesReportEndpointSerializationTests {
privateStringname="654321";
publicstaticclassBar{
privateStringname="123456";
publicStringgetName(){
returnthis.name;
}
publicvoidsetName(Stringname){
this.name=name;
}
}
privateBarbar=newBar();
publicBargetBar(){
@ -329,6 +317,18 @@ public class ConfigurationPropertiesReportEndpointSerializationTests {
@@ -329,6 +317,18 @@ public class ConfigurationPropertiesReportEndpointSerializationTests {
return"Name: "+this.name;
}
publicstaticclassBar{
privateStringname="123456";
publicStringgetName(){
returnthis.name;
}
publicvoidsetName(Stringname){
this.name=name;
}
}
}
publicstaticclassCycleextendsFoo{
@ -346,6 +346,7 @@ public class ConfigurationPropertiesReportEndpointSerializationTests {
@@ -346,6 +346,7 @@ public class ConfigurationPropertiesReportEndpointSerializationTests {
publicvoidsetSelf(Fooself){
this.self=self;
}
}
publicstaticclassMapHolderextendsFoo{
@ -359,6 +360,7 @@ public class ConfigurationPropertiesReportEndpointSerializationTests {
@@ -359,6 +360,7 @@ public class ConfigurationPropertiesReportEndpointSerializationTests {
publicvoidsetMap(Map<String,Object>map){
this.map=map;
}
}
publicstaticclassListHolderextendsFoo{
@ -372,6 +374,7 @@ public class ConfigurationPropertiesReportEndpointSerializationTests {
@@ -372,6 +374,7 @@ public class ConfigurationPropertiesReportEndpointSerializationTests {
@ -46,9 +46,9 @@ public class MetricsEndpointTests extends AbstractEndpointTests<MetricsEndpoint>
@@ -46,9 +46,9 @@ public class MetricsEndpointTests extends AbstractEndpointTests<MetricsEndpoint>
@ -75,6 +75,35 @@ public class OAuth2AuthorizationServerConfiguration extends
@@ -75,6 +75,35 @@ public class OAuth2AuthorizationServerConfiguration extends
@ -119,33 +148,4 @@ public class OAuth2AuthorizationServerConfiguration extends
@@ -119,33 +148,4 @@ public class OAuth2AuthorizationServerConfiguration extends
@ -96,14 +96,15 @@ public class BasicErrorController implements ErrorController {
@@ -96,14 +96,15 @@ public class BasicErrorController implements ErrorController {
@ -47,13 +47,13 @@ public class ConfigurationPropertiesAutoConfigurationTests {
@@ -47,13 +47,13 @@ public class ConfigurationPropertiesAutoConfigurationTests {
@ -64,7 +64,7 @@ public class TestableInitialContextFactory implements InitialContextFactory {
@@ -64,7 +64,7 @@ public class TestableInitialContextFactory implements InitialContextFactory {
@ -46,7 +46,7 @@ public class CompilerOptionHandler extends OptionHandler {
@@ -46,7 +46,7 @@ public class CompilerOptionHandler extends OptionHandler {
@ -104,7 +104,7 @@ public class InitializrServiceTests extends AbstractHttpClientMockTests {
@@ -104,7 +104,7 @@ public class InitializrServiceTests extends AbstractHttpClientMockTests {
this.thrown.expectMessage("No content received from server");
@ -126,7 +126,7 @@ public class InitializrServiceTests extends AbstractHttpClientMockTests {
@@ -126,7 +126,7 @@ public class InitializrServiceTests extends AbstractHttpClientMockTests {
this.thrown.expectMessage("Invalid content received from server");
@ -137,7 +137,7 @@ public class InitializrServiceTests extends AbstractHttpClientMockTests {
@@ -137,7 +137,7 @@ public class InitializrServiceTests extends AbstractHttpClientMockTests {
@ -166,6 +166,7 @@ public class HttpTunnelConnection implements TunnelConnection {
@@ -166,6 +166,7 @@ public class HttpTunnelConnection implements TunnelConnection {
@ -95,6 +95,7 @@ public class TunnelClient implements SmartInitializingSingleton {
@@ -95,6 +95,7 @@ public class TunnelClient implements SmartInitializingSingleton {
@ -124,6 +124,7 @@ public class MockClientHttpRequestFactory implements ClientHttpRequestFactory {
@@ -124,6 +124,7 @@ public class MockClientHttpRequestFactory implements ClientHttpRequestFactory {
@ -491,10 +490,10 @@ public class ConfigurationMetadataAnnotationProcessorTests {
@@ -491,10 +490,10 @@ public class ConfigurationMetadataAnnotationProcessorTests {
@ -138,6 +138,7 @@ public class LaunchedURLClassLoader extends URLClassLoader {
@@ -138,6 +138,7 @@ public class LaunchedURLClassLoader extends URLClassLoader {
}
}
catch(Exceptionex){
// Ignore and continue
}
// 2) Try to find locally
@ -147,6 +148,7 @@ public class LaunchedURLClassLoader extends URLClassLoader {
@@ -147,6 +148,7 @@ public class LaunchedURLClassLoader extends URLClassLoader {
@ -34,16 +34,16 @@ public class ByteArrayStartsWith extends TypeSafeMatcher<byte[]> {
@@ -34,16 +34,16 @@ public class ByteArrayStartsWith extends TypeSafeMatcher<byte[]> {
@Override
publicvoiddescribeTo(Descriptiondescription){
description.appendText("a byte array starting with ").appendValue(bytes);
description.appendText("a byte array starting with ").appendValue(this.bytes);
}
@Override
protectedbooleanmatchesSafely(byte[]item){
if(item.length<bytes.length){
if(item.length<this.bytes.length){
returnfalse;
}
for(inti=0;i<bytes.length;i++){
if(item[i]!=bytes[i]){
for(inti=0;i<this.bytes.length;i++){
if(item[i]!=this.bytes[i]){
returnfalse;
}
}
Some files were not shown because too many files have changed in this diff
Show More