Loading tools/data-binding/compiler/src/main/java/android/databinding/tool/LayoutBinder.java +1 −7 Original line number Diff line number Diff line Loading @@ -192,13 +192,7 @@ public class LayoutBinder { public String getImplementationName() { if (hasVariations()) { final String suffix; if (hasVariations()) { suffix = mBundle.getConfigName(); } else { suffix = ""; } return mBaseClassName + suffix + "Impl"; return mBaseClassName + mBundle.getConfigName() + "Impl"; } else { return mBaseClassName; } Loading Loading
tools/data-binding/compiler/src/main/java/android/databinding/tool/LayoutBinder.java +1 −7 Original line number Diff line number Diff line Loading @@ -192,13 +192,7 @@ public class LayoutBinder { public String getImplementationName() { if (hasVariations()) { final String suffix; if (hasVariations()) { suffix = mBundle.getConfigName(); } else { suffix = ""; } return mBaseClassName + suffix + "Impl"; return mBaseClassName + mBundle.getConfigName() + "Impl"; } else { return mBaseClassName; } Loading