提交 df8b297d 编写于 作者: A ainilife

small bug fix

上级 d77e5443
......@@ -122,7 +122,11 @@ public class DefaultABTestCodec implements ABTestCodec {
sb.append('|');
}
sb.append(e.getKey()).append(':').append(e.getValue());
if(e.getValue() == null){
sb.append(e.getKey()).append(':');
}else{
sb.append(e.getKey()).append(':').append(e.getValue());
}
}
}
......
......@@ -1684,6 +1684,18 @@
</requirement>
</requirements>
</component>
<component>
<role>com.dianping.cat.system.page.abtest.service.ABTestService</role>
<implementation>com.dianping.cat.system.page.abtest.service.ABTestServiceImpl</implementation>
<requirements>
<requirement>
<role>com.dianping.cat.home.dal.abtest.AbtestDao</role>
</requirement>
<requirement>
<role>com.dianping.cat.home.dal.abtest.AbtestRunDao</role>
</requirement>
</requirements>
</component>
<component>
<role>org.unidal.web.mvc.model.ModuleRegistry</role>
<implementation>org.unidal.web.mvc.model.ModuleRegistry</implementation>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册