1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 03:53:21 +02:00

Cosmetics

Change-Id: Iff79df38f9281dcfed474f67d576de9d1e0ee6f4
This commit is contained in:
Sergey Prigogin 2016-12-27 19:23:42 -08:00
parent d8ee90b27b
commit 88f0688276

View file

@ -911,7 +911,7 @@ public class SemanticUtil {
} }
static IType[] concatTypes(final IType t, IType[] types) { static IType[] concatTypes(final IType t, IType[] types) {
IType[] result= new IType[types.length+1]; IType[] result= new IType[types.length + 1];
result[0]= t; result[0]= t;
System.arraycopy(types, 0, result, 1, types.length); System.arraycopy(types, 0, result, 1, types.length);
return result; return result;