Merge branch '1.5.x'

pull/11848/merge
Phillip Webb 7 years ago
commit 187c4d728c

@ -8,6 +8,10 @@ case "`uname`" in
cygwin=true cygwin=true
;; ;;
MINGW*)
cygwin=true
;;
Darwin*) Darwin*)
darwin=true darwin=true
;; ;;

@ -192,7 +192,6 @@ class TypeUtils {
if (type.getTypeArguments().isEmpty()) { if (type.getTypeArguments().isEmpty()) {
return qualifiedName; return qualifiedName;
} }
else {
StringBuilder name = new StringBuilder(); StringBuilder name = new StringBuilder();
name.append(qualifiedName); name.append(qualifiedName);
name.append("<").append(type.getTypeArguments().stream() name.append("<").append(type.getTypeArguments().stream()
@ -200,7 +199,6 @@ class TypeUtils {
.append(">"); .append(">");
return name.toString(); return name.toString();
} }
}
@Override @Override
public String visitArray(ArrayType t, Void none) { public String visitArray(ArrayType t, Void none) {

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2017 the original author or authors. * Copyright 2012-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

Loading…
Cancel
Save