Skip to content
Snippets Groups Projects
Commit c6c7739d authored by felmer's avatar felmer
Browse files

SSDM-2805: bug fixed: escaping '[' for regex

SVN: 35076
parent 21404ccc
No related branches found
No related tags found
No related merge requests found
...@@ -41,21 +41,21 @@ public class WhiteListCodebaseAwareObjectInputStream extends CodebaseAwareObject ...@@ -41,21 +41,21 @@ public class WhiteListCodebaseAwareObjectInputStream extends CodebaseAwareObject
static { static {
addToWhiteListPatterns("char"); addToWhiteListPatterns("char");
addToWhiteListPatterns("[C"); addToWhiteListPatterns("\\[C");
addToWhiteListPatterns("byte"); addToWhiteListPatterns("byte");
addToWhiteListPatterns("[B"); addToWhiteListPatterns("\\[B");
addToWhiteListPatterns("short"); addToWhiteListPatterns("short");
addToWhiteListPatterns("[S"); addToWhiteListPatterns("\\[S");
addToWhiteListPatterns("int"); addToWhiteListPatterns("int");
addToWhiteListPatterns("[I"); addToWhiteListPatterns("\\[I");
addToWhiteListPatterns("long"); addToWhiteListPatterns("long");
addToWhiteListPatterns("[J"); addToWhiteListPatterns("\\[J");
addToWhiteListPatterns("float"); addToWhiteListPatterns("float");
addToWhiteListPatterns("[F"); addToWhiteListPatterns("\\[F");
addToWhiteListPatterns("double"); addToWhiteListPatterns("double");
addToWhiteListPatterns("[D"); addToWhiteListPatterns("\\[D");
addToWhiteListPatterns("boolean"); addToWhiteListPatterns("boolean");
addToWhiteListPatterns("[Z"); addToWhiteListPatterns("\\[Z");
addToWhiteListPatterns("org\\.springframework\\.remoting\\.support\\.RemoteInvocation"); addToWhiteListPatterns("org\\.springframework\\.remoting\\.support\\.RemoteInvocation");
addToWhiteListPatterns("com\\.marathon\\.util\\.spring\\.StreamSupportingRemoteInvocation"); addToWhiteListPatterns("com\\.marathon\\.util\\.spring\\.StreamSupportingRemoteInvocation");
addToWhiteListPatterns("com\\.marathon\\.util\\.spring\\.RemoteInvocationDecorator"); addToWhiteListPatterns("com\\.marathon\\.util\\.spring\\.RemoteInvocationDecorator");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment