Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [recommenders-dev] ModelRepository.getRemoterepo() for error logging?

The current implementation is as follows:

@Override
    public String toString() {
        return basedir.getAbsolutePath();
    }


I would have no problem with changing this to:

        return Objects.toStringHelper(this).add("basedir", basedir.getAbsoluteFile()).add("whatever", "value").toString();


Please open a bug with, copy this email conversation into, and then create a gerrit fix that references this new bug as follows:

"
Fixes bug xxxxxx: <summary of the bug>
"

That will help us to generate future changelogs for 2.0.1 and 2.1.0. more easily.

Thanks,
Marcel


Am 06.11.2013 um 10:56 schrieb Patrick Gottschaemmer <mail@xxxxxxxxxxxxxxxxx>:

> Hi,
> 
> could the class ModelRepository get something like ModelRepository.getRemoteRepo() for error logging purposes?
> Or atleast a new implementation of toString(), including the URI of the RemoteRepo?
> 
> Any concerns?
> 
> Best regards
> Patrick
> 
> 
> _______________________________________________
> recommenders-dev mailing list
> recommenders-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/recommenders-dev



Back to the top