Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
teaey committed Mar 19, 2016
1 parent 85d110b commit c8afdd5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ protected synchronized void doExport() {
generic = Boolean.FALSE.toString();
}
if(local !=null){
if(local=="true"){
if("true".equals(local)){
local=interfaceName+"Local";
}
Class<?> localClass;
Expand All @@ -221,7 +221,7 @@ protected synchronized void doExport() {
}
}
if(stub !=null){
if(stub=="true"){
if("true".equals(stub)){
stub=interfaceName+"Stub";
}
Class<?> stubClass;
Expand Down

0 comments on commit c8afdd5

Please sign in to comment.