Skip to content

Commit c746004

Browse files
authored
Update AdvancedSorceress.java
1 parent 09aa44d commit c746004

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

dependency-injection/src/main/java/com/iluwatar/dependency/injection/AdvancedSorceress.java

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
/**
44
* The MIT License
55
* Copyright (c) 2014-2017 Ilkka Seppälä
6-
*
6+
* <p>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
88
* of this software and associated documentation files (the "Software"), to deal
99
* in the Software without restriction, including without limitation the rights
1010
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1111
* copies of the Software, and to permit persons to whom the Software is
1212
* furnished to do so, subject to the following conditions:
13-
*
13+
* <p>
1414
* The above copyright notice and this permission notice shall be included in
1515
* all copies or substantial portions of the Software.
16-
*
16+
* <p>
1717
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1818
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1919
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -32,14 +32,14 @@
3232
*/
3333
public class AdvancedSorceress implements Wizard {
3434

35-
private Tobacco tobacco;
35+
private Tobacco tobacco;
3636

37-
public void setTobacco(Tobacco tobacco) {
38-
this.tobacco = tobacco;
39-
}
37+
public void setTobacco(Tobacco tobacco) {
38+
this.tobacco = tobacco;
39+
}
4040

41-
@Override
42-
public void smoke() {
43-
tobacco.smoke(this);
44-
}
41+
@Override
42+
public void smoke() {
43+
tobacco.smoke(this);
44+
}
4545
}

0 commit comments

Comments
 (0)