Skip to content

Commit

Permalink
increased version to 3.1-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
Franziskus Karsunke committed Oct 28, 2015
1 parent 5cbe48e commit 32b4618
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>de.swm</groupId>
<artifactId>swm-mobile-base</artifactId>
<packaging>pom</packaging>
<version>3.0</version>
<version>3.1-SNAPSHOT</version>
<name>SWM Mobile project collection</name>
<description>This is the common project for all smw mobile project collections</description>
<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions swm-gwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<parent>
<groupId>de.swm</groupId>
<artifactId>swm-mobile-base</artifactId>
<version>3.0</version>
<version>3.1-SNAPSHOT</version>
</parent>

<artifactId>swm-gwt-client</artifactId>
<version>3.0</version>
<version>3.1-SNAPSHOT</version>

<!-- lesbare Namen u. Beschreibung fuer nicht computer (Menschen). -->
<packaging>jar</packaging>
Expand Down
4 changes: 2 additions & 2 deletions swm-mobile-kitchensink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>de.swm</groupId>
<artifactId>swm-mobile-base</artifactId>
<version>3.0</version>
<version>3.1-SNAPSHOT</version>
</parent>

<artifactId>swm-mobile-kitchensink</artifactId>
<version>3.0</version>
<version>3.1-SNAPSHOT</version>

<packaging>war</packaging>
<name>Kitchen-Sink for swm-mobile</name>
Expand Down
4 changes: 2 additions & 2 deletions swm-mobile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>de.swm</groupId>
<artifactId>swm-mobile-base</artifactId>
<version>3.0</version>
<version>3.1-SNAPSHOT</version>
</parent>

<artifactId>swm-mobile</artifactId>
<version>3.0</version>
<version>3.1-SNAPSHOT</version>

<packaging>jar</packaging>
<name>Mobile-GWT-Bibliothek der SWM</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ private void fireEvent(final IEvent eventToFire, final IPage page) {
* @param spinnerStarted spinner is started
* @return the loading indicator.
*/
protected LoadingIndicatorPopup startPopup(final ISpinnerStarted spinnerStarted) {
public LoadingIndicatorPopup startPopup(final ISpinnerStarted spinnerStarted) {
spinner.showCentered(true);
final Timer timer = new Timer() {

Expand All @@ -555,7 +555,7 @@ public void run() {
/**
* Will hide a loading indicator popup.
*/
protected void stopSpinnerIfRunning() {
public void stopSpinnerIfRunning() {
if(isSpinnerStarted) {
isSpinnerStarted = false;
spinner.setVisible(false);
Expand Down

0 comments on commit 32b4618

Please sign in to comment.