//if feedback is allow then store it and update the links
if (feedbackAllow) {
try {
//store the feedback
IFeedbackDataStore store = PluginManager.getFeedbackDataStores();
store.save(advice);
//notify the feedback plugins to recalculate the score
IInterestedInFeedback[] feedbackPlugins = PluginManager.getInterestedInFeedback();
for (int i = 0; i < feedbackPlugins.length; i++) {